Grid Fields
Fields
ColumnProperty | Column property. This is an attached property. Grid defines Column property, so that it can be set on any element treated as a cell. Column property specifies child's position with respect to columns. |
ColumnSpanProperty | ColumnSpan property. This is an attached property. Grid defines ColumnSpan, so that it can be set on any element treated as a cell. ColumnSpan property specifies child's width with respect to columns. Example, ColumnSpan == 2 means that child will span across two columns. |
IsSharedSizeScopeProperty | IsSharedSizeScope property marks scoping element for shared size. |
RowProperty | Row property. This is an attached property. Grid defines Row, so that it can be set on any element treated as a cell. Row property specifies child's position with respect to rows. Remarks: Rows are 0 - based. In order to appear in first row, element should have Row property set to Default value for the property is |
RowSpanProperty | RowSpan property. This is an attached property. Grid defines RowSpan, so that it can be set on any element treated as a cell. RowSpan property specifies child's height with respect to row grid lines. Example, RowSpan == 3 means that child will span across three rows. |
ShowGridLinesProperty | ShowGridLines property. This property is used mostly for simplification of visual debugging. When it is set to true grid lines are drawn to visualize location of grid lines. |