Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/322.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 显示网格中的组总数_C#_Infragistics_Ultrawingrid - Fatal编程技术网

C# 显示网格中的组总数

C# 显示网格中的组总数,c#,infragistics,ultrawingrid,C#,Infragistics,Ultrawingrid,我在网格视图中显示“金额”列的总值,当我对网格视图进行分组时,它显示每个组的总值,但不显示所有组总和的梯度总值。我如何显示它?我正在infragistics中使用ultra grid view。显示您要在包含GroupByRowsFooter及其位置的UltraGridOverride上设置的所有组的摘要。帮助中的主题中有一个示例。以下是帮助主题中的C代码: private void customersUltraGrid_InitializeLayout(object sender, In

我在网格视图中显示“金额”列的总值,当我对网格视图进行分组时,它显示每个组的总值,但不显示所有组总和的梯度总值。我如何显示它?我正在infragistics中使用ultra grid view。

显示您要在包含GroupByRowsFooter及其位置的UltraGridOverride上设置的所有组的摘要。帮助中的主题中有一个示例。以下是帮助主题中的C代码:

private void customersUltraGrid_InitializeLayout(object sender, 
  Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
{
    this.customersUltraGrid.DisplayLayout.Override.AllowRowSummaries = 
      AllowRowSummaries.True;
    this.customersUltraGrid.DisplayLayout.Override.SummaryDisplayArea =
      SummaryDisplayAreas.GroupByRowsFooter |
      SummaryDisplayAreas.TopFixed;
}

要显示所有组的摘要,您需要在具有GroupByRowsFooter及其位置的UltraGridOverride上设置。帮助中的主题中有一个示例。以下是帮助主题中的C代码:

private void customersUltraGrid_InitializeLayout(object sender, 
  Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
{
    this.customersUltraGrid.DisplayLayout.Override.AllowRowSummaries = 
      AllowRowSummaries.True;
    this.customersUltraGrid.DisplayLayout.Override.SummaryDisplayArea =
      SummaryDisplayAreas.GroupByRowsFooter |
      SummaryDisplayAreas.TopFixed;
}