.NET Framework Class Library for Silverlight
Grid..::.ColumnDefinitions Property

Gets a ColumnDefinitionCollection defined on this instance of Grid.

Namespace:  System.Windows.Controls
Assembly:  System.Windows (in System.Windows.dll)
Syntax

Visual Basic (Declaration)
Public ReadOnly Property ColumnDefinitions As ColumnDefinitionCollection
    Get
Visual Basic (Usage)
Dim instance As Grid
Dim value As ColumnDefinitionCollection

value = instance.ColumnDefinitions
C#
public ColumnDefinitionCollection ColumnDefinitions { get; }
XAML Property Element Usage
<grid>
  <grid.ColumnDefinitions>
    oneOrMoreColumnDefinitions
  </grid.ColumnDefinitions>
</grid>

XAML Values

oneOrMoreColumnDefinitions

One or more ColumnDefinition elements. Each such ColumnDefinition becomes a placeholder representing a column in the final grid layout.

Remarks

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.

NoteNote:

By default, a grid contains one row and one column.

Examples

The following example creates a Grid with two columns using ColumnDefinitions.

XAML
<Grid.ColumnDefinitions>
    <ColumnDefinition Width="250" />
    <ColumnDefinition Width="150" />
</Grid.ColumnDefinitions>
Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

See Also

Reference

Other Resources

Tags :


Page view tracker