Partager via


Comment : obtenir un ListBoxItem

Si vous devez obtenir un index spécifique ListBoxItem dans un ListBoxindex particulier, vous pouvez utiliser un ItemContainerGenerator.

Exemple

L’exemple suivant montre un ListBox et ses éléments.

<ListBox Margin="10,0,0,5" Name="lb" VerticalAlignment="Top" Grid.Column="0" Grid.Row="2">
    <ListBoxItem>Item 0</ListBoxItem>
    <ListBoxItem>Item 1</ListBoxItem>
    <ListBoxItem>Item 2</ListBoxItem>
    <ListBoxItem>Item 3</ListBoxItem>
</ListBox>

L’exemple suivant montre comment récupérer l’élément en spécifiant l’index de l’élément dans la ContainerFromIndex propriété du ItemContainerGenerator.

private void GetIndex0(object sender, RoutedEventArgs e)
{
  ListBoxItem lbi = (ListBoxItem)
      (lb.ItemContainerGenerator.ContainerFromIndex(0));
  Item.Content = "The contents of the item at index 0 are: " +
      (lbi.Content.ToString()) + ".";
}
Private Sub GetIndex0(ByVal Sender As Object, ByVal e As RoutedEventArgs)

    Dim lbi As ListBoxItem = CType( _
        lb.ItemContainerGenerator.ContainerFromIndex(0), ListBoxItem)
    Item.Content = "The contents of the item at index 0 are: " + _
        (lbi.Content.ToString()) + "."
End Sub

Une fois que vous avez récupéré l’élément de zone de liste, vous pouvez afficher le contenu de l’élément, comme illustré dans l’exemple suivant.

Item.Content = "The contents of the item at index 0 are: " +
    (lbi.Content.ToString()) + ".";
Item.Content = "The contents of the item at index 0 are: " + _
    (lbi.Content.ToString()) + "."