UIElementCollection::Insert Method (Int32, UIElement^)

 

Inserts an element into a UIElementCollection at the specified index position.

Namespace:   System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
virtual void Insert(
	int index,
	UIElement^ element
)

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
Return to top
Show: