GeneratorPosition Structure

Définition

GeneratorPosition est utilisé pour décrire la position d'un élément géré par ItemContainerGenerator.

public value class GeneratorPosition
public struct GeneratorPosition
type GeneratorPosition = struct
Public Structure GeneratorPosition
Héritage
GeneratorPosition

Exemples

L’exemple suivant montre comment commencer GeneratorPosition à générer de l’avant à partir du début d’une liste d’éléments.

// Start generating items forward from the beginning of the item list
GeneratorPosition position = new GeneratorPosition(-1, 0);
GeneratorDirection direction = GeneratorDirection.Forward;
IItemContainerGenerator generator = (IItemContainerGenerator)this.itemsControl.ItemContainerGenerator;
generator.StartAt(position, direction);
' Start generating items forward from the beginning of the item list
Dim position As New GeneratorPosition(-1, 0)
Dim direction As GeneratorDirection = GeneratorDirection.Forward
Dim generator As IItemContainerGenerator = CType(Me.itemsControl.ItemContainerGenerator, IItemContainerGenerator)
generator.StartAt(position, direction)

L’exemple suivant montre comment commencer GeneratorPosition à générer vers l’arrière à partir de la fin d’une liste d’éléments.

// Start generating items backward from the end of the item list
GeneratorPosition position = new GeneratorPosition(-1, 0);
GeneratorDirection direction = GeneratorDirection.Backward;
IItemContainerGenerator generator = (IItemContainerGenerator)this.itemsControl.ItemContainerGenerator;
generator.StartAt(position, direction);
' Start generating items backward from the end of the item list
Dim position As New GeneratorPosition(-1, 0)
Dim direction As GeneratorDirection = GeneratorDirection.Backward
Dim generator As IItemContainerGenerator = CType(Me.itemsControl.ItemContainerGenerator, IItemContainerGenerator)
generator.StartAt(position, direction)

L’exemple suivant montre comment commencer GeneratorPosition à générer vers l’avant à partir du milieu d’une liste d’éléments.

// Start generating items forward,
// starting with the first unrealized item (offset of 1),
// after the 5th realized item
// (the item with index 4 among all realized items) in the list
GeneratorPosition position = new GeneratorPosition(4, 1);
GeneratorDirection direction = GeneratorDirection.Forward;
IItemContainerGenerator generator = (IItemContainerGenerator)this.itemsControl.ItemContainerGenerator;
generator.StartAt(position, direction);
' Start generating items forward,
' starting with the first unrealized item (offset of 1),
' after the 5th realized item
' (the item with index 4 among all realized items) in the list
Dim position As New GeneratorPosition(4, 1)
Dim direction As GeneratorDirection = GeneratorDirection.Forward
Dim generator As IItemContainerGenerator = CType(Me.itemsControl.ItemContainerGenerator, IItemContainerGenerator)
generator.StartAt(position, direction)

Remarques

GeneratorPosition est utilisé par StartAt.

Constructeurs

GeneratorPosition(Int32, Int32)

Initialise une nouvelle instance de GeneratorPosition avec l'index et l'offset spécifiés.

Propriétés

Index

Obtient ou définit l'index Int32 relatif aux éléments générés (réalisés).

Offset

Obtient ou définit l'offset Int32 relatif aux éléments non générés (non réalisés) près de l'élément indexé.

Méthodes

Equals(Object)

Compare l’instance spécifiée à l’instance actuelle de GeneratorPosition pour déterminer si leur valeurs sont égales.

GetHashCode()

Retourne le code de hachage pour ce GeneratorPosition.

ToString()

Retourne une représentation sous forme de chaîne de cette instance de GeneratorPosition.

Opérateurs

Equality(GeneratorPosition, GeneratorPosition)

Compare deux objets GeneratorPosition pour déterminer si leur valeurs sont égales.

Inequality(GeneratorPosition, GeneratorPosition)

Compare deux objets GeneratorPosition pour déterminer si leurs valeurs sont différentes.

S’applique à