数据触发导致按钮未对齐
当我从按钮中删除此样式时,它会正确显示。如果我不这样做,它会将行中的所有其他按钮向下推大约 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您为按钮定义了任何隐式样式,那么当您显式设置 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.