CollectionViewSource.ItemsPath Propiedad

Definición

Obtiene o establece la ruta de acceso de la propiedad que se va a seguir desde el elemento de nivel superior para buscar grupos dentro de CollectionViewSource.

public:
 property PropertyPath ^ ItemsPath { PropertyPath ^ get(); void set(PropertyPath ^ value); };
PropertyPath ItemsPath();

void ItemsPath(PropertyPath value);
public PropertyPath ItemsPath { get; set; }
var propertyPath = collectionViewSource.itemsPath;
collectionViewSource.itemsPath = propertyPath;
Public Property ItemsPath As PropertyPath
<CollectionViewSource ItemsPath="propertyPathString" .../>

Valor de propiedad

Ruta de acceso de propiedad que se va a seguir desde el elemento de nivel superior para buscar grupos. El valor predeterminado es propertyPath creado a partir de una cadena vacía. Esta ruta de acceso implica que el propio objeto es la colección.

Se aplica a

Consulte también