RowDefinitionCollection.Add(RowDefinition) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.