UIElementCollection.Add(UIElement) Method
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.
Adds the specified element to the UIElementCollection.
public:
virtual int Add(System::Windows::UIElement ^ element);
public virtual int Add (System.Windows.UIElement element);
abstract member Add : System.Windows.UIElement -> int
override this.Add : System.Windows.UIElement -> int
Public Overridable Function Add (element As UIElement) As Integer
Parameters
Returns
The index position of the added element.
Examples
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);
}
Applies to
See also
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.