如何给gridControl动态的添加合计

Posted abelangelo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何给gridControl动态的添加合计相关的知识,希望对你有一定的参考价值。

for (int i = 0; i < this.dsHz.Tables[0].Columns.Count; i++)

if (dsHz.Tables[0].Columns[i].DataType == typeof(Int32) ||
dsHz.Tables[0].Columns[i].DataType == typeof(Double) ||
dsHz.Tables[0].Columns[i].DataType == typeof(Decimal))

this.gvHz.Columns[i].SummaryItem.DisplayFormat = "0:C";//设置显示格式
this.gvHz.Columns[i].SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;//设置显示类型

//当类型为double和Decimal类型时,设置 其精度
if (dsHz.Tables[0].Columns[i].DataType == typeof(Double) || dsHz.Tables[0].Columns[i].DataType == typeof(Decimal))

this.gvHz.Columns[i].DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
this.gvHz.Columns[i].DisplayFormat.FormatString = "0.00";//设置为小数点后两位

以上是关于如何给gridControl动态的添加合计的主要内容,如果未能解决你的问题,请参考以下文章

如何给DevExpress中的GridControl添加列

给Grid动态添加列和添加样式

dev gridControl和pivotGridControl控件,加序号。要求在控件自带的筛选时,序号不会乱,还能打印出来。

gridcontrol怎么用代码动态合并复合表头

wpf 动态添加滚动条

Dev GridControl 小结3