如何将代码中的控件对齐。
XAML:
<Grid x:Name="LayoutRoot">
<Grid.RowDefinitions>
<RowDefinition Height="60" />
<RowDefinition />
</Grid.RowDefinitions>
</<Grid>
<TextBlock HorizontalAlignment="Center" Grid.row="0"/>
在代码背后,我想将DataGrid
添加到该网格中。
DataGrid dt = new DataGrid();
// how to add above the grid in to that
// layoutroot in second row.
答案 0 :(得分:2)
对于第二行,将Grid.Row属性设置如下:
DataGrid dt = new DataGrid();
Grid.SetRow(dt ,1);
LayoutRoot.Children.Add(dt);
答案 1 :(得分:1)
您可以使用Grid.SetRow()和Grid.SetColumn()函数从后面的代码设置位置。
Grid.SetRow(dt,1); // set position
LayoutRoot.Children.Add(dt); // add control into the Grid