このマークアップを含むウィンドウがあります
<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" と書くと、ボタンのサイズが変更できなくなります。
コントロールの初期サイズを設定するにはどうすればよいですか?