WPF DataGrid分组:在一个图层上按2个属性分组

时间:2014-05-21 14:42:06

标签: c# wpf xaml datagrid grouping

我有一个WPF DataGrid,它通过名为customerID的属性和名为SiteID的属性进行分组,该属性正常。但是,我想让它更好,因此两个属性都分组在同一层上。也就是当你辍学时。

目前它由CustomerID分组,然后是SiteID,这不是我想要发生的事情。

这可能吗?

到目前为止,这是分组XAML

     <CollectionViewSource.GroupDescriptions>
        <PropertyGroupDescription PropertyName="CustomerID "/>
        <PropertyGroupDescription PropertyName="SiteID"/>
     </CollectionViewSource.GroupDescriptions>

非常感谢

1 个答案:

答案 0 :(得分:0)

我假设您一次设置CustomerIDSiteID。您可以使用GroupID的getter创建一个新属性return CustomerID ?? SiteID;,并在其上进行分组。