Partilhar via


Como: Remove an Element by Using an Index

Este exemplo mostra como remover um elemento Button usando seu número de índice e o manipulador de eventos MouseLeftButtonUp.

Exemplo

<TabItem MouseLeftButtonUp="RemoveButton">
<TabItem.Header>Remove Control</TabItem.Header>
</TabItem>

...

       void RemoveButton(object sender, MouseButtonEventArgs e)
        {
            if ((sp1.Children.IndexOf(btn) >= 0) || (sp1.Children.IndexOf(btn1) >= 0) || (sp1.Children.IndexOf(btn2) >= 0) || (sp1.Children.IndexOf(btn3) >= 0))
            {
                sp1.Children.RemoveAt(0);
            }
        }
Private Sub RemoveButton(ByVal sender As Object, ByVal e As MouseButtonEventArgs)
    If (sp1.Children.IndexOf(btn) >= 0) Or (sp1.Children.IndexOf(btn1) >= 0) Or (sp1.Children.IndexOf(btn2) >= 0) Or (sp1.Children.IndexOf(btn3) >= 0) Then
        sp1.Children.RemoveAt(0)
    End If
End Sub
<TabItem MouseLeftButtonUp="ClearButtons">
<TabItem.Header>Clear Controls</TabItem.Header>
</TabItem>

For the complete sample, see Usando o exemplo de elementos.

Consulte também

Tarefas

Usando o exemplo de elementos

Referência

UIElementCollection