Button.Style 和 Style.Trigger 之间的 Style 标签有什么用?

发布于 2024-10-21 06:05:35 字数 792 浏览 1 评论 0 原文

Button.StyleStyle.Trigger 之间的 Style 标签有何用途?是因为 Style 是附加属性吗?

<Button.Style>                
    <Style >
        <Style.Triggers>
            <Trigger Property="Button.IsMouseOver" Value="True">
                <Trigger.EnterActions>
                    <BeginStoryboard>
                        <Storyboard>
                            <DoubleAnimation From="1" To="15" Storyboard.TargetProperty="FontSize"></DoubleAnimation>
                        </Storyboard>
                    </BeginStoryboard>
                </Trigger.EnterActions>
            </Trigger>
        </Style.Triggers>
    </Style>
</Button.Style>

What is the use of the Style tag between Button.Style and Style.Trigger? Is it because Style an attached property?

<Button.Style>                
    <Style >
        <Style.Triggers>
            <Trigger Property="Button.IsMouseOver" Value="True">
                <Trigger.EnterActions>
                    <BeginStoryboard>
                        <Storyboard>
                            <DoubleAnimation From="1" To="15" Storyboard.TargetProperty="FontSize"></DoubleAnimation>
                        </Storyboard>
                    </BeginStoryboard>
                </Trigger.EnterActions>
            </Trigger>
        </Style.Triggers>
    </Style>
</Button.Style>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黑凤梨 2024-10-28 06:05:35

这就是 XAML 在代码中的样子:

var button = new Button();
button.Style = new Style();
button.Style.Triggers.Add(new Trigger() ...);

标签 引用 Button 上的属性并使用

<Button.Style>                
    <local:MyStyle>
    </local:MyStyle>
</Button.Style>

This is what the XAML what look like in code:

var button = new Button();
button.Style = new Style();
button.Style.Triggers.Add(new Trigger() ...);

The tag <Button.Style> references a property on Button and with the <Style> tag you are setting the style property to an object of type Style. If you had a derived class for Style, such as MyStyle, then the XAML would look like this:

<Button.Style>                
    <local:MyStyle>
    </local:MyStyle>
</Button.Style>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文