UIElementCollection::Item Property (Int32)
.NET Framework (current version)
Gets or sets the UIElement stored at the zero-based index position of the UIElementCollection.
Assembly: PresentationFramework (in PresentationFramework.dll)
public: property UIElement^ default[ int index ] { virtual UIElement^ get(int index); virtual void set(int index, UIElement^ value); }
Parameters
- index
-
Type:
System::Int32
The index position of the UIElement.
The following example uses the Item property to identify the child element at a specified index position.
void GetItem(object sender, RoutedEventArgs e) { TextBlock txt2 = new TextBlock(); sp1.Children.Add(txt2); txt2.Text = "UIElement at Index position [0] is " + sp1.Children[0].ToString(); }
.NET Framework
Available since 3.0
Available since 3.0
Show: