GridControl 两列单元格相加 赋值到第三列
程序员文章站
2022-07-13 17:08:21
...
GridControl 两列单元格相加 赋值到第三列
//首先设置合计列的UnboundType 属性 (自己选)
//调用方法 CustomUnboundColumnData
DataView dv = this.DtTable.DefaultView;
if (e.IsGetData)
{
//设置非绑定列的 FieldName 为定义的全局FieldName,
//设置非绑定列 AgeHeight 显示内容:Height + Age
if (e.Column.FieldName == "AgeHeight")
{
Int32 Height = Convert.ToInt32(dv[e.ListSourceRowIndex]["Height"]);
Int32 Age = Convert.ToInt32(dv[e.ListSourceRowIndex]["Age"]);
Int32 HeightAge = Height + Age;
e.Value = HeightAge;
}
}
OVER!
上一篇: ios的qq分享接入流程
下一篇: 支付宝接入流程