私はグループ化を試みていComboBox
ますGroupStyle
:
<ComboBox ItemsSource="{Binding GroupedItems}">
<ComboBox.GroupStyle>
<GroupStyle>
<GroupStyle.HeaderTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name}" />
</DataTemplate>
</GroupStyle.HeaderTemplate>
</GroupStyle>
</ComboBox.GroupStyle>
</ComboBox>
ここで、「GroupedItems」プロパティはListCollectionView
「GroupDescription」が適用されたものです。
これはほとんど機能します。ヘッダーは正しいですが、アイテム自体はポップアップに表示されません。なんで?
注: ComboBox
MSDNのスタイル/テンプレートの修正版を使用しています。