Wpf Windows应用商店应用复选框无法调整大小

时间:2014-12-22 02:00:14

标签: wpf checkbox windows-store-apps

我在Windows Store App - XAML文件中根本无法使复选框大小小于168px。 请参阅下面的SS。

我该怎么办?有时...

enter image description here

1 个答案:

答案 0 :(得分:0)

因为CheckBox的默认MinWidth值为168

只需将MinWidth="0"添加到CheckBox的xaml即可,它会正确调整大小。

<CheckBox MinWidth="0" ... />

我是如何找到的 -

在Blend中打开您的xaml文件。选择CheckBox,然后展开属性面板中的布局部分。

您会在 MinWidth 字段旁边看到 168

enter image description here