如何在WPF
中调整窗口大小时保持对象到位?
答案 0 :(得分:2)
如果你的意思更多"响应",你可以使用一个Grid的RowDefinitions和ColumnDefinitions,其大小为" *"。
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="2*" />
<RowDefinition Height="*" />
<!-- this one below works the same as just '*' -->
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="2*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
星号将设置一个&#34;重量&#34;到指定的行/列,它将填充网格上剩余的空格。