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];

int selectRow = gridView1.GetSelectedRows()[0];
 string id = this.gridView1.GetRowCellValue(selectRow, "id").ToString();


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM