我是靠谱客的博主 漂亮煎蛋,最近开发中收集的这篇文章主要介绍wpf 事件触发器,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

做动画效果

鼠标放button上面,字段变大

 在故事板里创建一个动画,  在0-0.2s内,字体变大

  <Window.Resources>
          
        <Style x:Key="defaultstyle" TargetType="Button"  >
            <Setter Property="FontSize" Value="20"></Setter>
            <Setter Property="Width" Value= "200" ></Setter>
            <Style.Triggers>
                <EventTrigger RoutedEvent="Mouse.MouseEnter">
                    <EventTrigger.Actions>
                        <BeginStoryboard>
                            <Storyboard>
                                <DoubleAnimation Duration="0:0:0.2" Storyboard.TargetProperty="FontSize" To="30">
                                    
                                </DoubleAnimation>
                            </Storyboard>
                        </BeginStoryboard>
                    </EventTrigger.Actions>
                </EventTrigger>
            </Style.Triggers>
            
             
        </Style>
    </Window.Resources>

    <Grid>
        <StackPanel>
            <Button Style="{StaticResource defaultstyle}" Content="Button1" />
            <Button Style="{StaticResource defaultstyle}" Content="Button2"  />
            <Button Style="{StaticResource defaultstyle}" Content="Button3"   />
        </StackPanel>
    </Grid>

最后

以上就是漂亮煎蛋为你收集整理的wpf 事件触发器的全部内容,希望文章能够帮你解决wpf 事件触发器所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部