下面的示例演示了如何把分组汇总应用于 XtraTreeList 控件。 使用了 TreeListColumn.RowFooterSummary 和 TreeListColumn.RowFooterSummaryStrFormat 属性来设置函数类型和汇总值的格式。 启用了 TreeListOptionsView.ShowRowFooterSummary 选项允许显示行脚注。
下面的插图展示了代码运行结果:
C# | 复制代码 |
---|---|
treeList1.OptionsView.ShowRowFooterSummary = true; treeList1.Columns["Budget"].RowFooterSummary = SummaryItemType.Sum; treeList1.Columns["Budget"].RowFooterSummaryStrFormat = "Budget Total {0:c}"; |
Visual Basic | 复制代码 |
---|---|
TreeList1.OptionsView.ShowRowFooterSummary = True TreeList1.Columns("Budget").RowFooterSummary = SummaryItemType.Sum TreeList1.Columns("Budget").RowFooterSummaryStrFormat = "Budget Total {0:c}" |