[WPF] About grids

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.