wpf datagrid绑定了数据 如果选中多行中怎么获取选中行的某列的值

Posted

tags:

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

参考技术A private void fill_Datagrid(string sql)

cmd = new SqlCommand(sql, conn.getConn());
sda = new SqlDataAdapter();
sda.SelectCommand = cmd;
ds = new DataSet();
sda.Fill(ds);
dataGridView1.DataSource = ds.Tables[0];
dataGridView1.Columns[0].Visible = false;

其中sql=“select 字段 from a,b,c where 字段 =?”;
sql是在数据库中查询语句。
参考技术B DataRowView selectItem = datagird.SelectItem as DataRowView;

object obj = selectItem["columnName"] or selectItem[index];

WPF DataGrid怎么实现多行选中,不能使用CheckBox

参考技术A   WPF DataGrid怎么实现多行选中,不能使用CheckBox:
  SingleSelect:false,即可实现选择多行。

  【解析】
  原因分析:
  datagrid 中的 idField 属性,必须对应后台的实体属性字段,而且该字段必须确保唯一性,一般用id标识,否则就无法获取在datagrid中选择的多条记录。
  DataGrid组件包括2个方法检索选择行数据:
· getSelected: 得到第一个选择行的数据,如果没有选择行则返回null否则返回该记录。
· getSelections:得到全部的选择行的数据,如果元素是记录的话,返回数组数据。本回答被提问者采纳

以上是关于wpf datagrid绑定了数据 如果选中多行中怎么获取选中行的某列的值的主要内容,如果未能解决你的问题,请参考以下文章

WPF DataGrid怎么实现多行选中,不能使用CheckBox

以编程方式在 WPF DataGrid 中选择多行

WPF DataGrid 获取选中 一行 或者 多行

WPF DataGrid 如何对选择的多行进行删除

EasyUI datagrid 如何默认选择多行

C#的datagrid中添加复选框的问题