在wpf treeview中对子节点进行分组

时间:2013-03-27 18:13:28

标签: wpf xaml treeview groupstyle

我想在树视图中对项目进行分组,但在第一级别没有。

例如,我有一个树视图,显示如下的分层视图:

Organization 1
 Department 1
   Person 1
   Person 2
 Department 2
   Person 1
Organisation 2
 Department 1

蒙山

 <TreeView.GroupStyle>

你可以对组织进行分组,但我想按照财产(即性别)对人员进行分组

 <TreeView.GroupStyle> 

正在为组织分组工作,但我无法为这样的树视图项设置组样式:

<Style x:key="PersonNodeStyle" TargetType="TreeViewItem" >
    <Setter Property="GroupStyle">
        <Setter.Value>
            <GroupStyle>...</GroupStyle>
        </Setter.Value>
    </Setter>
</Style>

为什么我无法设置TreeViewItem的GroupStyle值?

0 个答案:

没有答案