Мне нужно что-то подобное пару дней назад.Я поместил раскадровку и элементы для анимации в пользовательский элемент управления.Я добавил свойство зависимостей, чтобы можно было запускать / останавливать анимацию посредством связывания.Все, что осталось, - это использовать пользовательский элемент управления там, где он вам нужен в вашем приложении.
Мой XAML выглядит так:
<UserControl x:Class="MyAssembly.SpinningWait"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:core="clr-namespace:MyAssembly">
<UserControl.Resources>
<Storyboard x:Key="canvasAnimation">
<DoubleAnimationUsingKeyFrames
RepeatBehavior="Forever"
SpeedRatio="24"
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(RotateTransform.Angle)"
Storyboard.TargetName="canvas">
<DiscreteDoubleKeyFrame KeyTime="0:0:2" Value="45"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:4" Value="90"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:6" Value="135"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:8" Value="180"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:10" Value="225"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:12" Value="270"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:14" Value="315"/>
<DiscreteDoubleKeyFrame KeyTime="0:0:16" Value="360"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</UserControl.Resources>
<core:RadialPanel x:Name="canvas" RenderTransformOrigin="0.5,0.5">
<core:RadialPanel.Resources>
<Style TargetType="Ellipse">
<Setter Property="Height" Value="6" />
<Setter Property="Width" Value="6" />
<Setter Property="Fill" Value="White" />
</Style>
</core:RadialPanel.Resources>
<core:RadialPanel.RenderTransform>
<TransformGroup>
<RotateTransform/>
</TransformGroup>
</core:RadialPanel.RenderTransform>
<Ellipse />
<Ellipse Opacity="0.1" />
<Ellipse Opacity="0.2" />
<Ellipse Opacity="0.3" />
<Ellipse Opacity="0.4" />
<Ellipse Opacity="0.5" />
<Ellipse Opacity="0.6" />
<Ellipse Opacity="0.7" />
</core:RadialPanel>
</UserControl>
И его код позади:
public partial class SpinningWait : UserControl
{
private Storyboard _storyboard;
public SpinningWait()
{
InitializeComponent();
}
public bool IsWaiting
{
get { return (bool)GetValue(IsWaitingProperty); }
set { SetValue(IsWaitingProperty, value); }
}
public static readonly DependencyProperty IsWaitingProperty =
DependencyProperty.Register("IsWaiting", typeof(bool), typeof(SpinningWait), new UIPropertyMetadata(false, new PropertyChangedCallback(OnIsWaitingChanged)));
private static void OnIsWaitingChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
((SpinningWait)d).OnIsWaitingChanged((object)d, e);
}
private void OnIsWaitingChanged(object sender, DependencyPropertyChangedEventArgs e)
{
if (IsWaiting)
{
this.Visibility = Visibility.Visible;
this.StartAnimation();
}
else
{
this.Visibility = Visibility.Collapsed;
this.StopAnimation();
}
}
private void StartAnimation()
{
this._storyboard = (Storyboard)FindResource("canvasAnimation");
this._storyboard.Begin(canvas, true);
}
private void StopAnimation()
{
this._storyboard.Remove(canvas);
}
}