WPF中的比例最小宽度

时间:2015-04-23 15:15:47

标签: c# wpf user-interface wpf-controls

我发现很难理解,WPF允许我设置比例宽度而不是minWidth!我的意思是:

<ColumnDefinition Width="126*"/>                 // OK
<ColumnDefinition Width="126*" MinWidth="126*"/> // NOT ALLOWED

您如何按比例设置最小/最大宽度/高度?

2 个答案:

答案 0 :(得分:2)

因为没有意义

宽度=“126 *”MinWidth =“126 *”

相同 宽度= “126 *”

宽度=“126 *”MinWidth =“125 *”

相同 宽度= “126 *”

宽度=“126 *”MinWidth =“127 *”
与...一样 宽度= “127 *”

答案 1 :(得分:0)

一种解决方案是添加附加属性。这可以监视网格的变化,并相应地调整最小宽度。