数据触发导致按钮未对齐

发布于 2024-10-21 14:59:49 字数 432 浏览 2 评论 0原文

当我从按钮中删除此样式时,它会正确显示。如果我不这样做,它会将行中的所有其他按钮向下推大约 5 个像素。

<Button.Style>
    <Style TargetType="Button">
        <Style.Triggers>
            <DataTrigger Binding="{Binding CanUserUpdateHosts}" Value="True">
                <Setter Property="IsEnabled" Value="False"/>
            </DataTrigger>
        </Style.Triggers>
    </Style>
</Button.Style>

When I remove this style from a button it displays properly. When I don't, it pushes all the other buttons in the row down by approx 5 pixels.

<Button.Style>
    <Style TargetType="Button">
        <Style.Triggers>
            <DataTrigger Binding="{Binding CanUserUpdateHosts}" Value="True">
                <Setter Property="IsEnabled" Value="False"/>
            </DataTrigger>
        </Style.Triggers>
    </Style>
</Button.Style>

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

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

发布评论

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

评论(1

囍孤女 2024-10-28 14:59:49

如果您为按钮定义了任何隐式样式,那么当您显式设置 Button.Style 属性时,它们将被忽略。所以你很可能正在短路另一种风格。

另一方面,默认样式仍将被应用。

If you have any implicit Styles defined for Buttons, then they will be ignored if you set the Button.Style property explicitly. So chances are you are short-circuiting another Style.

Default Styles on the other hand will still be applied.

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