CollectionViewSource.ItemsPath プロパティ

定義

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" .../>

プロパティ値

最上位の項目からグループを検索するために従うプロパティ パス。 既定値は、空の文字列から作成された PropertyPath です。 このパスは、オブジェクト自体がコレクションであることを意味します。

適用対象

こちらもご覧ください