December 2019
Intermediate to advanced
528 pages
11h 19m
English
In XAML, we have a concept of a grid: essentially, each XAML page is subdivided into a grid, and you can tell the system how many rows and columns you want in your grid. In our example, the grid has two rows. The second row is as big as it needs to be (Auto) to fit its contents, and the first row takes up the remaining space (*).
Each subsequent control within the grid specifies the row that it wishes to occupy—even the subgrid. Specifying the row and column ...