在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];
当然这里有个问题,那就是你添加的gridControl要用 gridControl.defaultView来将视图的内容与gridControl中的内容对应上。