Grid and Canvas
There's always a default column and row. If you don't assign the attached property for the row and column to a UIElement child of a grid, it's by default in 0,0.
View ArticleGrid and Canvas
Apparently a Grid can in fact be used without Rows and Columns. I noticed that the SDK help for ContolTemplate has a Button Template for an example. In that template, Grid is used without Rows and...
View ArticleGrid and Canvas
OK. Thank you WP. By the way, I had tried <Grid> </Grid> with no rows or columns and the Z-ordering did seem to work as expected. However, the documentation doesn't state that this is an...
View ArticleGrid and Canvas
The Grid can be used with only one row and one column. You can certainly use it along with the ZIndex property to control ordering. A Canvas could be used in the same way. Grids are good when you want...
View ArticleGrid and Canvas
Is Grid designed to allow use without any rows and columns in order to use Z-order for one group of items? E.g.:Code Snippet <Grid> <Rectangle Width = 50 Height = 50 Grid.ZIndex = 2/>...
View Article