gpt4 book ai didi

c# - 从 toolStripComboBox 中检索值

转载 作者:行者123 更新时间:2023-11-30 20:48:54 57 4
gpt4 key购买 nike

我创建了一个 toolStripComboBox 并从数据库中检索所有项目列表选择,如下所示:

private void toolStripComboBox1_Click(object sender, EventArgs e)
{
toolStripComboBox1.ComboBox.ValueMember = "month";
toolStripComboBox1.ComboBox.DataSource = dbConnect.selectMonth(); //get all month from the database
}

然后组合框显示数据库中的所有月份。

然后我尝试使用 selectedItem 从 comboBox 中获取选择,如下所示:

string monthSelect = toolStripComboBox1.SelectedItem.ToString();

但是我得到值 monthSelect = "System.Data.DataRowView"

知道如何获取值而不是 System.Data.DataRowView 吗?

最佳答案

找到了解决方案。将 Datasource 用于 toolStripComboBox 时,例如:

toolStripComboBox1.ComboBox.ValueMember = "valueMember";  
toolStripComboBox1.ComboBox.DataSource = datasource(); //retrieve value from database into comboBox list

toolStripComboBox1.SelectedItem 将仅返回 DataRow 的自定义 View 。为了得到当前选择的值需要使用:

toolStripComboBox1.ComboBox.SelectedValue.ToString();

关于c# - 从 toolStripComboBox 中检索值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24115921/

57 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com