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에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET