Aracılığıyla paylaş


ListCollectionView.GroupDescriptions Özellik

Tanım

Koleksiyondaki GroupDescription öğelerin görünümde nasıl gruplandırıldığını açıklayan bir nesne koleksiyonu alır.

public:
 virtual property System::Collections::ObjectModel::ObservableCollection<System::ComponentModel::GroupDescription ^> ^ GroupDescriptions { System::Collections::ObjectModel::ObservableCollection<System::ComponentModel::GroupDescription ^> ^ get(); };
public override System.Collections.ObjectModel.ObservableCollection<System.ComponentModel.GroupDescription> GroupDescriptions { get; }
member this.GroupDescriptions : System.Collections.ObjectModel.ObservableCollection<System.ComponentModel.GroupDescription>
Public Overrides ReadOnly Property GroupDescriptions As ObservableCollection(Of GroupDescription)

Özellik Değeri

ObservableCollection<GroupDescription>

Koleksiyondaki GroupDescription öğelerin görünümde nasıl gruplandırıldığını açıklayan nesne koleksiyonu.

Örnekler

Aşağıdaki örnekte bu özelliğin nasıl kullanılacağı gösterilmektedir:

// This groups the items in the view by the property "Category"
PropertyGroupDescription groupDescription = new PropertyGroupDescription();
groupDescription.PropertyName = "Category";
listingDataView.GroupDescriptions.Add(groupDescription);
'This groups by property "Category"
Dim groupDescription As PropertyGroupDescription = New PropertyGroupDescription
groupDescription.PropertyName = "Category"
listingDataView.GroupDescriptions.Add(groupDescription)

Tam örnek için bkz. Veri Bağlama Tanıtımı.

Açıklamalar

Not

Bu özellik yalnızca koleksiyon nesnesine erişerek ve gibi Addçeşitli yöntemleri kullanılarak ayarlanabilir. Koleksiyon nesnesine erişim özelliği salt okunurdur; koleksiyonun kendisi okunur/yazılır.

Şunlara uygulanır

Ayrıca bkz.