WPF 中类型 Control 的全局隐式 syle

发布于 2024-11-26 11:04:20 字数 185 浏览 3 评论 0原文

这种风格应该适用于每个控件,但它没有效果,为什么?

<Style TargetType="{x:Type Control}">
            <Setter Property="Margin" Value="1" />           
</Style>

This style should apply on every control, but it has no effect, WHY?

<Style TargetType="{x:Type Control}">
            <Setter Property="Margin" Value="1" />           
</Style>

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

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

发布评论

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

评论(1

星星的轨迹 2024-12-03 11:04:20

你的说法不正确。隐式样式仅应用于指定类型,不适用于从该类型派生的类型。

例如,假设您有一个如下所示的自定义按钮:

public class MyButton : Button {
    // ...
}

和一个如下所示的隐式样式:

<Style TargetType="{x:Type Button}">
    <Setter Property="Margin" Value="1" />           
</Style>

在以下 XMAL 中,上面的样式不会影响 MyButton:

<Grid>
    <Button />
    <local:MyButton />
</Grid>

Your statement is incorrect. Implicit Styles are only applied to the specified type, not to types that derive from it.

For example, assume you have a custom button like:

public class MyButton : Button {
    // ...
}

And an implicit Style like so:

<Style TargetType="{x:Type Button}">
    <Setter Property="Margin" Value="1" />           
</Style>

In the following XMAL, the Style above would not affect MyButton:

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