ItemContainer.Child Property
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.
Gets or sets the child element of the item, which can be any UIElement
. This is the content of the item.
public:
property UIElement ^ Child { UIElement ^ get(); void set(UIElement ^ value); };
UIElement Child();
void Child(UIElement value);
public UIElement Child { get; set; }
var uIElement = itemContainer.child;
itemContainer.child = uIElement;
Public Property Child As UIElement
Property Value
The child element of the item, which can be any UIElement
.