DevExpress GridView获取选中行某列的值

Posted 东经115

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DevExpress GridView获取选中行某列的值相关的知识,希望对你有一定的参考价值。

不废话,直接上代码

int selectedHandle;
selectedHandle = this.gridView1.GetSelectedRows()[0];
MessageBox.Show(this.gridView1.GetRowCellValue(selectedHandle, "RoadName").ToString());

 

或者:

string str = this.gridView1.GetRowCellValue(this.gridView1.GetSelectedRows()[0], "RoadName").ToString();

 

或者:

string str = this.gridView1.GetRowCellValue(this.gridView1.GetSelectedRows()[0], gridView1.Columns["RoadName"]).ToString();

 

 

以上是关于DevExpress GridView获取选中行某列的值的主要内容,如果未能解决你的问题,请参考以下文章

获取gridview选中行的数据

devexpress gridview 中选择多行 剪切,粘帖功能怎么做?

DevExpress GridView 如何通过代码选中行?

c#吧 DevExpress

devexpress gridControl,gridView 点击选中的三种方法

devexpress gridControl,gridView 点击选中的三种方法