RowDefinitionCollection.Add(RowDefinition) Method

Definition

Adds a RowDefinition element to a RowDefinitionCollection.

public:
 virtual void Add(System::Windows::Controls::RowDefinition ^ value);
public void Add (System.Windows.Controls.RowDefinition value);
abstract member Add : System.Windows.Controls.RowDefinition -> unit
override this.Add : System.Windows.Controls.RowDefinition -> unit
Public Sub Add (value As RowDefinition)

Parameters

value
RowDefinition

Identifies the RowDefinition to add to the collection.

Implements

Examples

The following example demonstrates how to use the Add method to add a RowDefinition to a RowDefinitionCollection.

private void addRow(object sender, RoutedEventArgs e)
{
    rowDef1 = new RowDefinition();
    grid1.RowDefinitions.Add(rowDef1);
}
Private Sub addRow(ByVal sender As Object, ByVal e As RoutedEventArgs)
    Dim rowDef1 As New RowDefinition()
    grid1.RowDefinitions.Add(rowDef1)
End Sub

To view the complete sample, see How to: Manipulate Columns and Rows by Using ColumnDefinitionsCollections and RowDefinitionsCollections.

Applies to

See also