我有这种形式,我需要在其中使用数据库中的文本值对填充组合框,以便我可以在对数据库的更新查询中使用该值
我发现了一些方法,它使用一个类来制作同时具有文本和值的对象:
class RequestType
{
public string Text { get; set; }
public string Value { get; set; }
public RequestType(string text, string val)
{
Text = text;
Value = val;
}
public override string ToString()
{
return Text;
}
我像这样将它们添加到组合框中
RequestType type1 = new RequestType("Label 1", "Value 1");
RequestType type2 = new RequestType("Label 2", "Value 2");
comboBox1.Items.Add(type1);
comboBox1.Items.Add(type2);
comboBox1.SelectedItem = type2;
现在我不知道如何检索所选项目的值,即选择了 id 标签 1,它必须返回 value1,如果选择了标签 2,它返回 value2,
有什么帮助吗???提前谢谢