UIElementCollection::Add Method (UIElement^)
.NET Framework (current version)
Adds the specified element to the UIElementCollection.
Assembly: PresentationFramework (in PresentationFramework.dll)
Parameters
- element
-
Type:
System.Windows::UIElement^
The UIElement to add.
The following example uses the Add method to add child content to a parent StackPanel. You do this by using the Children property, which is of type UIElementCollection.
void AddButton(object sender, MouseButtonEventArgs e) { sp1.Children.Clear(); btn = new Button(); btn.Content = "New Button"; sp1.Children.Add(btn); }
.NET Framework
Available since 3.0
Available since 3.0
Show: