我有一个希望简单的问题。我想更改DataGrid的行组头中的信息。 项源是带有GroupDescription的PagedDataCollection。我已经改变了这样的风格:
<Controls:DataGrid.RowGroupHeaderStyles>
<Style TargetType="Controls:DataGridRowGroupHeader">
<Setter Property="PropertyNameVisibility" Value="Collapsed" />
<Setter Property="Background" Value="#FFB4DC69" />
<Setter Property="Foreground" Value="Black" />
<Setter Property="SublevelIndent" Value="15" />
</Style>
<Style TargetType="Controls:DataGridRowGroupHeader">
<Setter Property="Background" Value="#44225566" />
</Style>
</Controls:ExtendedDataGrid.RowGroupHeaderStyles>
但是帽子只改变了组名不可见。
组头现在看起来像这样:
第一个标题:项目1:(170项)
第二个标题:项目2:(10项)
...
我现在要做的是,标题看起来像这样:
项目1:5名开发人员,5名测试员,1名项目经理
项目2:1名开发人员,1名测试员,1名项目经理
...
但我不知道如何做到这一点。
你们中是否有人做过类似的事情和/或知道我的问题的答案。
致以最诚挚的问候,
TJ