我有这个标记的窗口
<Window x:Class="TestCloseWindow.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow">
<Button Command="ApplicationCommands.Close">Foo</Button>
</Window>
我想按钮 MinWidth 和 MinHeight 100 和 MaxHeight 和 MinHeight 等于 500
就像大小窗口一样,所以我做了这个
<Window x:Class="TestCloseWindow.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" SizeToContent="WidthAndHeight" >
<Button MaxHeight="500" MaxWidth="500" MinHeight="100" MinWidth="100" Command="ApplicationCommands.Close">Foo</Button>
</Window>
我想设置按钮 200 x 200 的初始大小而不在窗口中写入宽度和高度
如果我在按钮中写 Width="200" Height="200",则按钮变得不可调整大小。
如何设置控件的初始大小?