UIElementCollection::Insert Method (Int32, UIElement^)
.NET Framework (current version)
Inserts an element into a UIElementCollection at the specified index position.
Assembly: PresentationFramework (in PresentationFramework.dll)
Parameters
- index
-
Type:
System::Int32
The index position where you want to insert the element.
- element
-
Type:
System.Windows::UIElement^
The element to insert into the UIElementCollection.
The following example uses the Insert method to insert child content at a specified index position.
void InsertControls(object sender, RoutedEventArgs e) { btn2 = new Button(); btn2.Content = "Inserted Button"; sp1.Children.Insert(1, btn2); }
.NET Framework
Available since 3.0
Available since 3.0
Show: