#509 – Displaying a Busy Indicator in a Data Template
March 7, 2012 Leave a comment
Here’s another variation on the earlier example of displaying a spinning busy indicator using an Image control. This example shows how to do the same thing when the Image control is hosted in a DataTemplate.
In the code below, the Image control is part of the data template. If the Movie object’s Loading flag is true, the image will be displayed and the Storyboard will animate (spin) it. Once Loading becomes false, the Image stops animating and disappears.
<Window x:Class="WpfApplication11.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:controls="clr-namespace:System.Windows.Controls;assembly=PresentationFramework" Title="Spinny" Height="500" Width="300"> <Window.Resources> <ResourceDictionary> <controls:BooleanToVisibilityConverter x:Key="boolToVisibilityConverter" /> </ResourceDictionary> </Window.Resources> <Grid Margin="15"> <ListBox ItemsSource="{Binding MovieList}"> <ListBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <Image Name="imgBusy" Source="Images\spinny3.jpg" Height="40" Width="40" Visibility="{Binding Path=Loading, Converter={StaticResource boolToVisibilityConverter}}"> <Image.RenderTransform> <RotateTransform Angle="0" CenterX="20" CenterY="20"/> </Image.RenderTransform> </Image> <Label Content="{Binding Title}"/> <Label Content="{Binding Year}"/> <Label Content="{Binding Director}"/> </StackPanel> <DataTemplate.Triggers> <DataTrigger Binding="{Binding ElementName=imgBusy, Path=Visibility}" Value="Visible"> <DataTrigger.EnterActions> <BeginStoryboard Name="rotatingStoryboard"> <Storyboard> <DoubleAnimation Storyboard.TargetName="imgBusy" Storyboard.TargetProperty="RenderTransform.(RotateTransform.Angle)" From="0" To="360" Duration="0:0:1.5" RepeatBehavior="Forever"/> </Storyboard> </BeginStoryboard> </DataTrigger.EnterActions> <!-- Must remove the Storyboard, or it will continue animating forever in the background --> <DataTrigger.ExitActions> <RemoveStoryboard BeginStoryboardName="rotatingStoryboard"/> </DataTrigger.ExitActions> </DataTrigger> </DataTemplate.Triggers> </DataTemplate> </ListBox.ItemTemplate> </ListBox> </Grid> </Window>