XAML实现:

[xhtml] view plaincopy
  1. <Border Height="100" Width="80" CornerRadius="11,11,11,11" Margin="5" BorderThickness="2" Background="Brown" IsEnabled="False" Name="Bord11">  
  2.     <Border.Triggers>  
  3.         <EventTrigger RoutedEvent="Border.Loaded" >  
  4.             <EventTrigger.Actions>  
  5.                 <BeginStoryboard>  
  6.                     <Storyboard>  
  7.                         <ObjectAnimationUsingKeyFrames  Storyboard.TargetProperty="Visibility" Duration="0:0:4">  
  8.                             <ObjectAnimationUsingKeyFrames.KeyFrames>  
  9.                                 <DiscreteObjectKeyFrame KeyTime="0:0:1" >  
  10.                                     <DiscreteObjectKeyFrame.Value>  
  11.                                         <Visibility>Visible</Visibility>  
  12.                                     </DiscreteObjectKeyFrame.Value>  
  13.                                 </DiscreteObjectKeyFrame>                                                  
  14.                                 <DiscreteObjectKeyFrame KeyTime="0:0:2" >  
  15.                                     <DiscreteObjectKeyFrame.Value>  
  16.                                         <Visibility>Hidden</Visibility>  
  17.                                     </DiscreteObjectKeyFrame.Value>  
  18.                                 </DiscreteObjectKeyFrame>                                                  
  19.                                 <DiscreteObjectKeyFrame KeyTime="0:0:3" >  
  20.                                     <DiscreteObjectKeyFrame.Value>  
  21.                                         <Visibility>Collapsed</Visibility>  
  22.                                     </DiscreteObjectKeyFrame.Value>  
  23.                                 </DiscreteObjectKeyFrame>  
  24.                                   
  25.                             </ObjectAnimationUsingKeyFrames.KeyFrames>  
  26.                         </ObjectAnimationUsingKeyFrames>  
  27.                     </Storyboard>  
  28.                 </BeginStoryboard>  
  29.             </EventTrigger.Actions>  
  30.         </EventTrigger>  
  31.     </Border.Triggers>  
  32.     <Label Height="39" Name="label1" Width="62">ABCDEFGH</Label>  
  33. </Border>  

  

后台实现:

[c-sharp] view plaincopy
  1. ObjectAnimationUsingKeyFrames animate = new ObjectAnimationUsingKeyFrames();  
  2. animate.Duration = new TimeSpan(0,0,4);  
  3. animate.RepeatBehavior = RepeatBehavior.Forever;  
  4. DiscreteObjectKeyFrame kf1 = new DiscreteObjectKeyFrame(Visibility.Visible, new TimeSpan(0, 0, 1));  
  5. DiscreteObjectKeyFrame kf2 = new DiscreteObjectKeyFrame(Visibility.Hidden, new TimeSpan(0, 0, 2));  
  6. DiscreteObjectKeyFrame kf3 = new DiscreteObjectKeyFrame(Visibility.Collapsed, new TimeSpan(0, 0,3));  
  7. animate.KeyFrames.Add(kf1);  
  8. animate.KeyFrames.Add(kf2);  
  9. animate.KeyFrames.Add(kf3);  
  10. Bord11.BeginAnimation(Border.VisibilityProperty, animate);  
posted on   WPF之家  阅读(3505)  评论(0编辑  收藏  举报
编辑推荐:
· ASP.NET Core 模型验证消息的本地化新姿势
· 对象命名为何需要避免'-er'和'-or'后缀
· SQL Server如何跟踪自动统计信息更新?
· AI与.NET技术实操系列:使用Catalyst进行自然语言处理
· 分享一个我遇到过的“量子力学”级别的BUG。
阅读排行:
· C# 中比较实用的关键字,基础高频面试题!
· .NET 10 Preview 2 增强了 Blazor 和.NET MAUI
· 为什么AI教师难以实现
· 如何让低于1B参数的小型语言模型实现 100% 的准确率
· AI Agent爆火后,MCP协议为什么如此重要!
< 2025年3月 >
23 24 25 26 27 28 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 1 2 3 4 5

点击右上角即可分享
微信分享提示