在此已经学习了wpf Grid控件,
WPF布局控件Grid的基本使用 - 使用kaxaml_bcbobo21cn的博客-CSDN博客
下面继续学习;
定义3行3列的基本代码如下;为了看清效果,设置 ShowGridLines="True";
<Grid ShowGridLines="True"><!--使用Grid控件-->
<Grid.ColumnDefinitions><!--定义Grid的列,定义3列-->
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions><!--定义Grid的行,定义3行-->
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
</Grid>
减少一列,效果如下;
只有行,没有列;
指定第一列的宽度;
第一列指定宽度,剩下2列分别占据剩下宽度的30%和70%,写为 3* 、7*;
可在每个单元格放置控件;