C# 我combobox绑定了数据库中一个表中的ID 现在我要利用ID 查询对应的name 可是取不到combobox的值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 我combobox绑定了数据库中一个表中的ID 现在我要利用ID 查询对应的name 可是取不到combobox的值相关的知识,希望对你有一定的参考价值。

我设置一个变量接收combobox的值 在用SQL语句查询name赋给另一个combobox
string a;
a=this.conbobox.selectedvalues.ToString();
a取不到值 说是无法绑定由多个部分组成的标识符
求各位大哥了
说明一下 selectedtext也不行

string cmdText = "SELECT ID, Name FROM 表1";
SqlConnection conn = new SqlConnection(连接字符串);
conn.Open();
SqlDataAdapter da = new SqlDataAdapter(cmdText, conn);
DataSet ds = new DataSet();
da.Fill(ds, "IdName");
//绑定
comboBox1.DisplayMember = "ID"; //显示的值
comboBox1.ValueMember = "Name"; //实际的值
comboBox1.DataSource = ds.Tables["IdName"];

在comboBox1_SelectedIndexChanged事件中用
string a = comboBox1.SelectedValue.ToString();
获取姓名。
参考技术A private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)

ComboBox c = sender as ComboBox;
MessageBox.Show(c.Text);

这样试试,弹的出text
参考技术B 不是这个语句的问题

c# datagridview 中添加comboBox的问题

我在一个窗体里创建了一个datagridview控件,没有绑定数据源,我把其中一列设置成了DataGridViewComboBoxColumn类型,我想通过点击这一列的单元格弹出下拉菜单,而这个菜单是数据库中某一表的其中一列,我怎么才能把这数据库中的表和这个下拉菜单相绑定?各位大侠帮我啊~~~~

参考技术A 这个需要触发的是datagridview的CellContentClick事件,在这个事件里,判断你的datagridview的ColumnIndex是不是所属的combobox的索引,如果是,才进行进一步的操作,例如:
//假定你的
combobox的索引是5,如果不确定,可以通过弹出e.ColumnIndex看看你所点击的combobox的索引是几

private void datagridview_CellContentClick(object sender, DataGridViewCellEventArgs e)

if (e.ColumnIndex == 5 && e.RowIndex != -1 && !datagridview.Rows[e.RowIndex].IsNewRow)

//这个地方写你的事件操作,如:
String id = datagridview.Rows[e.RowIndex].Cells[0].Value.ToString();
......

本回答被提问者采纳
参考技术B DataGridViewComboBoxCell cellColor = (DataGridViewComboBoxCell)dr.Cells[1]; //
cellColor.ValueMember = "ProductId";
cellColor.DisplayMember = "ProductName";
cellColor.DataSource = productList; //一个数据集,比如List<Products>
参考技术C 模板列

以上是关于C# 我combobox绑定了数据库中一个表中的ID 现在我要利用ID 查询对应的name 可是取不到combobox的值的主要内容,如果未能解决你的问题,请参考以下文章

在WPF中的Combobox中绑定

C# winForm程序 数据绑定 更新控件问题 combobox绑定的DataSource 数据表中已经添加了新的数据

c# combobox绑定数据源后默认显示第一个值

c# datagridview 中添加comboBox的问题

如何在 C# 中使用 ComboBox 从另一个 DataGridView 的 sql 表中选择数据名称?

C# 数据绑定 ComboBox 在其他控件中更改数据