欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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!

相关标签: 单元格相加