我有一个固定行数的网格,但列不固定。那么如何设置列定义。有没有办法在xaml中编写它?
答案 0 :(得分: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