WPFで自動サイズ変更を機能させるのに問題があるため、この簡単なデモを作成しました。これは単純なコードです:
<Window x:Class="UnderstandSizing.Window3"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
SizeToContent="WidthAndHeight"
ResizeMode="NoResize" >
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<TabControl Grid.Row="0" >
<TabItem Header="CCCC" />
</TabControl>
<Button Grid.Row="1" Content="Text" />
</Grid>
</Window>
グリッドではすべてがAutoに設定されており、ウィンドウはsizetocontentに構成されているため、ウィンドウにはTabControlとボタンだけがあり、他には何もありませんが、空のスペースがあります。見て:
設計時
ランタイム
私は何かが欠けているに違いない...