我有一个固定行数的网格,但列不固定。那么如何设置列定义。有没有办法在 xaml 中编写它?
问问题
105 次
1 回答
2
您有行定义和列定义:
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="250" />
<ColumnDefinition Width="150" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="2*" />
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
</Grid
于 2012-07-26T12:57:32.427 回答