DEV获取GridControl当前行
Posted wx62de6f4b9369e
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DEV获取GridControl当前行相关的知识,希望对你有一定的参考价值。
//直接通过gridView获取当前行
dr=this.gridView1.GetDataRow(this.gridView1.FocusedRowHandle);
//通过DataSet获取数据,需要转换行标
dr = ds.Tables[0].Rows[this.gridView1.ViewRowHandleToDataSourceIndex(e.FocusedRowHandle)];
//通过数据绑定获取
gridcontrol1.DataSource = dt;
dr = ds.Tables[0].Rows[dt.Position];
以上是关于DEV获取GridControl当前行的主要内容,如果未能解决你的问题,请参考以下文章