WPF实现左右移动(晃动)动画效果

时间:2022-03-16 15:05:02

本文实例为大家分享了WPF实现左右移动效果展示的具体代码,供大家参考,具体内容如下

实现控件或布局的左右移动(晃动)主要用到DoubleAnimation以及Storyboard

布局代码为:

?
1
2
3
4
5
6
<Canvas>
    <Grid Width="200" Height="100" Background="MediumAquamarine" Name="GroupboxArea" Canvas.Left="100" Canvas.Top="200"/>
    <Button Content="Button" Height="25" Width="78" Click="Button_Click"/>
 
 
</Canvas>

后台代码为:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
private void Button_Click(object sender, RoutedEventArgs e)
   {
     DoubleAnimation DAnimation = new DoubleAnimation();
     DAnimation.From = 100;//起点
     DAnimation.To = 280;//终点
     DAnimation.Duration = new Duration(TimeSpan.FromSeconds(0.5));//时间
 
     Storyboard.SetTarget(DAnimation, GroupboxArea);
     Storyboard.SetTargetProperty(DAnimation, new PropertyPath(Canvas.LeftProperty));
     Storyboard story = new Storyboard();
 
     story.Completed += new EventHandler(story_Completed);//完成后要做的事
     //story.RepeatBehavior = RepeatBehavior.Forever;//无限次循环,需要的自己加上
     story.Children.Add(DAnimation);
     story.Begin();
   }
   void story_Completed(object sender, EventArgs e)
   {
     DoubleAnimation DAnimation = new DoubleAnimation();
     DAnimation.From = 280;//起点
     DAnimation.To = 100;//终点
     DAnimation.Duration = new Duration(TimeSpan.FromSeconds(0.5));//时间
 
     Storyboard.SetTarget(DAnimation, GroupboxArea);
     Storyboard.SetTargetProperty(DAnimation, new PropertyPath(Canvas.LeftProperty));
     Storyboard story = new Storyboard();
 
     story.Completed += new EventHandler(storyCompleted);//完成后要做的事
     //story.RepeatBehavior = RepeatBehavior.Forever;//无限次循环,需要的自己加上
     story.Children.Add(DAnimation);
     story.Begin();
   }
 
   void storyCompleted(object sender, EventArgs e)
   {
     DoubleAnimation DAnimation = new DoubleAnimation();
     DAnimation.From = 100;//起点
     DAnimation.To = 200;//终点
     DAnimation.Duration = new Duration(TimeSpan.FromSeconds(0.5));//时间
 
     Storyboard.SetTarget(DAnimation, GroupboxArea);
     Storyboard.SetTargetProperty(DAnimation, new PropertyPath(Canvas.LeftProperty));
     Storyboard story = new Storyboard();
 
     //story.Completed += new EventHandler(storyCompleted);//完成后要做的事
     //story.RepeatBehavior = RepeatBehavior.Forever;//无限次循环,需要的自己加上
     story.Children.Add(DAnimation);
     story.Begin();
   }

 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.csdn.net/qq_41078703/article/details/78909188