我正在尝试使用ItemsControl
- 而不是ItemsPresenter
- 来呈现GroupItem
的项目,但无法找到要绑定的正确属性。
<ControlTemplate TargetType="{x:Type GroupItem}">
<Expander Header="{Binding Name}">
<ItemsControl
ItemsSource="{Binding RelativeSource={RelativeSource TemplatedParent},Path=??}"/>
<!--<ItemsPresenter />-->
</Expander>
</ControlTemplate>
我正在使用的任何财产都没有显示任何内容 那么GroupItem的属性是什么用作ItemsSource?
提前致谢。
答案 0 :(得分:0)
每个组都由CollectionViewGroup
的实例表示,该实例发布Items
属性:
<ControlTemplate TargetType="{x:Type GroupItem}">
<Expander Header="{Binding Name}">
<ItemsControl ItemsSource="{Binding Items}"/>
</Expander>
</ControlTemplate>