我有一个WPF DataGrid,它通过名为customerID的属性和名为SiteID的属性进行分组,该属性正常。但是,我想让它更好,因此两个属性都分组在同一层上。也就是当你辍学时。
目前它由CustomerID分组,然后是SiteID,这不是我想要发生的事情。
这可能吗?
到目前为止,这是分组XAML
<CollectionViewSource.GroupDescriptions>
<PropertyGroupDescription PropertyName="CustomerID "/>
<PropertyGroupDescription PropertyName="SiteID"/>
</CollectionViewSource.GroupDescriptions>
非常感谢
答案 0 :(得分:0)
我假设您一次设置CustomerID
或SiteID
。您可以使用GroupID
的getter创建一个新属性return CustomerID ?? SiteID;
,并在其上进行分组。