简单的动画
1 <TextBlock Name="lblStyled" Text="Hello, styled world!" FontSize="18" HorizontalAlignment="Center" VerticalAlignment="Center"> 2 <TextBlock.Style> 3 <Style TargetType="TextBlock"> 4 <Style.Triggers> 5 <EventTrigger RoutedEvent="MouseEnter"> 6 <EventTrigger.Actions> 7 <BeginStoryboard> 8 <Storyboard> 9 <DoubleAnimation Duration="0:0:0.300" Storyboard.TargetProperty="FontSize" To="28" /> 10 </Storyboard> 11 </BeginStoryboard> 12 </EventTrigger.Actions> 13 </EventTrigger> 14 <EventTrigger RoutedEvent="MouseLeave"> 15 <EventTrigger.Actions> 16 <BeginStoryboard> 17 <Storyboard> 18 <DoubleAnimation Duration="0:0:0.800" Storyboard.TargetProperty="FontSize" To="18" /> 19 </Storyboard> 20 </BeginStoryboard> 21 </EventTrigger.Actions> 22 </EventTrigger> 23 </Style.Triggers> 24 </Style> 25 </TextBlock.Style> 26 </TextBlock>
作者:Ants_double
出处:https://www.cnblogs.com/ants_double/
本文版权归作者和博客园所有,欢迎转载。转载请在留言板处留言给我,且在文章标明原文链接,谢谢!
如果您觉得本篇博文对您有所收获,觉得我还算用心,请点击右下角的 [大拇指],谢谢!