Dieser Artikel wurde noch nicht bewertet - Dieses Thema bewerten.

ItemContainerGenerator-Klasse

Generates the user interface (UI) on behalf of its host, such as an ItemsControl. This class cannot be inherited.

Namespace: System.Windows.Controls
Assembly: PresentationFramework (in presentationframework.dll)
XML-Namespaces:  http://schemas.microsoft.com/winfx/2006/xaml/presentation

public sealed class ItemContainerGenerator : IItemContainerGenerator, IWeakEventListener
public final class ItemContainerGenerator implements IItemContainerGenerator, IWeakEventListener
public final class ItemContainerGenerator implements IItemContainerGenerator, IWeakEventListener
Sie können diese verwaltete Klasse nicht in XAML verwenden.

ItemContainerGenerator implements IItemContainerGenerator, which is the interface that defines a type which:

  • Maintains an association between the data view of a multiple-item control, such as ContainerFromElement and the corresponding UIElement items.

  • Generates UIElement items on behalf of a multiple-item control.

If you need to get a specific ListBoxItem at a particular index in a ListBox you can use ItemContainerGenerator. The following example shows the ListBox and its items.

<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>

This example shows how to retrieve the item by specifying the index of the item in the ContainerFromIndex property.

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()) + ".";
}

Once you have retrieved the list box item you can do things such as display the contents of the item as shown in this example.

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

For the complete sample see Get ListBoxItem with Index Sample.

System.Object
  System.Windows.Controls.ItemContainerGenerator
Alle öffentlichen statischen (Shared in Visual Basic) Member dieses Typs sind threadsicher. Bei Instanzmembern ist die Threadsicherheit nicht gewährleistet.

Microsoft .NET Framework 3.0 wird unter Windows Vista, Microsoft Windows XP SP2 und Windows Server 2003 SP1 unterstützt.

.NET Framework

Unterstützt in: 3.0
Fanden Sie dies hilfreich?
(1500 verbleibende Zeichen)
© 2013 Microsoft. Alle Rechte vorbehalten.