在WPF中调整窗口大小时如何保持对象到位?

时间:2016-07-22 19:59:57

标签: c# wpf xaml

如何在WPF中调整窗口大小时保持对象到位?

1 个答案:

答案 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;到指定的行/列,它将填充网格上剩余的空格。

此处有更多信息:How to Make a WPF Window Responsive