There are two ways to set the position of a controller in a grid:
Method 1:
1Textblock1.setvalue (Grid.rowproperty,0);//set the row position of the control TextBlock1 to line 1th2Textblock1.setvalue (Grid.columnproperty,0);//set the column position of the control textBlock1 to column 1th3Textblock2.setvalue (Grid.rowproperty,1);//set the row position of the control TextBlock2 to line 2nd4Textblock2.setvalue (Grid.columnspanproperty,2);//to set the control TextBlock2 occupy a column count of 2 columns5 6Grid1. Children.add (TEXTBLOCK1);//add TextBlock1 to Grid grid1 with row and column position set7Grid1. Children.add (TEXTBLOCK2);//add TextBlock2 to Grid grid1 with row and column position set
Method 2:
1Grid.setrow (TextBlock1,0);//set the row position of the control TextBlock1 to line 1th2Grid.setcolumn (TextBlock1,0);//set the column position of the control textBlock1 to column 1th3Grid.setrow (TextBlock2,1);//set the row position of the control TextBlock2 to line 2nd4Grid.setcolumnspan (TextBlock2,2)//to set the control TextBlock2 occupy a column count of 2 columns5 6Grid1. Children.add (TEXTBLOCK1);//add TextBlock1 to Grid grid1 with row and column position set7Grid1. Children.add (TEXTBLOCK2);//add TextBlock2 to Grid grid1 with row and column position set
[WPF] About grids