コード ビハインドでコントロールを配置する方法。
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.