Grid::ColumnDefinitions Property
Gets a ColumnDefinitionCollection defined on this instance of Grid.
Namespace: System.Windows.Controls
Assembly: System.Windows (in System.Windows.dll)
<Grid> <Grid.ColumnDefinitions> oneOrMoreColumnDefinitions </Grid.ColumnDefinitions> </Grid>
XAML Values
Property Value
Type: System.Windows.Controls::ColumnDefinitionCollectionA ColumnDefinitionCollection defined on this instance of Grid
The ColumnDefinitionCollection contains the ColumnDefinition objects that define each column of the grid available for positioning elements.
If a child element is added to a column within a Grid, and the column has its Width property set to Auto, the child will be measured without restrictions. This behavior can prevent horizontal scroll bars from displaying if a ScrollViewer is being used, as the child element is measured as unbounded. For purposes of display, the child is clipped instead of scrolled.
When setting this property in XAML, do not include an explicit ColumnDefinitionCollection object element. Instead use implicit collection syntax. For more information, see the Remarks section in ColumnDefinitionCollection.
Note: |
|---|
By default, a grid contains one row and one column. |
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Note: