ColumnDefinitionCollection.Add(ColumnDefinition) 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 ColumnDefinition element to a ColumnDefinitionCollection.
public:
virtual void Add(System::Windows::Controls::ColumnDefinition ^ value);
public void Add (System.Windows.Controls.ColumnDefinition value);
abstract member Add : System.Windows.Controls.ColumnDefinition -> unit
override this.Add : System.Windows.Controls.ColumnDefinition -> unit
Public Sub Add (value As ColumnDefinition)
Parameters
- value
- ColumnDefinition
Identifies the ColumnDefinition to add to the collection.
Implements
Examples
The following example demonstrates how to use the Add method to add a ColumnDefinition to a ColumnDefinitionCollection.
private void addCol(object sender, RoutedEventArgs e)
{
colDef1 = new ColumnDefinition();
grid1.ColumnDefinitions.Add(colDef1);
}
Private Sub addCol(ByVal sender As Object, ByVal e As RoutedEventArgs)
Dim colDef1 As New ColumnDefinition
grid1.ColumnDefinitions.Add(colDef1)
End Sub
To view the complete sample, see How to: Manipulate Columns and Rows by Using ColumnDefinitionsCollections and RowDefinitionsCollections.
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.