WPF - 胜利7中的白色边界

时间:2011-05-13 07:09:59

标签: wpf

我有一个按钮的代码如下:

<Button Content="Logoff" FocusVisualStyle="{x:Null}" 
        Background="Transparent" BorderBrush="{x:Null}" BorderThickness="0"/>

在我目前的OS Win 7中,我仍然有一个白色边框。我怎么能删除这个?

1 个答案:

答案 0 :(得分:0)

由于按钮的默认镶边而出现白色边框.Chrome类是特定于主题的。您可以根据自己的喜好完全自定义它,否则您可以完全删除按钮控件的镶边。查看以下帖子了解更多信息

How to remove ButtonChrome border (when defining the template of a border)?

Get rid of button border in WPF?

How do you completely remove the button border in wpf?