Gets a RowDefinitionCollection defined on this instance of Grid.
Public ReadOnly Property RowDefinitions As RowDefinitionCollection Get
Dim instance As Grid Dim value As RowDefinitionCollection value = instance.RowDefinitions
public RowDefinitionCollection RowDefinitions { get; }
<grid> <grid.RowDefinitions> oneOrMoreRowDefinitions </grid.RowDefinitions> </grid>
One or more RowDefinition elements. Each such RowDefinition becomes a placeholder representing a row in the final grid layout.
The RowDefinitionCollection contains the RowDefinition objects that define each row of the grid available for positioning elements.
If a child element is added to a row within a Grid and the row has its Height property set to Auto, the child will be measured without restrictions. This behavior can prevent vertical 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 RowDefinitionCollection object element. Instead, use implicit collection syntax. For more information, see the Remarks section in RowDefinitionCollection.
By default, a grid contains one row and one column.
The following example creates a Grid with three rows. The Height of the first row is set to the value Auto, which distributes height evenly based on the size of the content that is within that row. The height of the second column and third column are set to 2* and * respectively. The second column gets 2/3 of the remaining space and the third column gets 1/3.
<Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="2*" /> <RowDefinition Height="*"/> </Grid.RowDefinitions>
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.