我创建了一个名为 ComboBoxItem 的自己的类
public class ComboBoxItem
{
public string _value;
public string _text;
public ComboBoxItem(string val, string text)
{
_value = val;
_text = text;
}
public override string ToString()
{
return _text;
}
}
我以这种方式在组合框中输入了一些带有值的文本:
busstops = new ComboBoxItem("410000015503", "New Bridge Street-St Dominics");
comboBox1.Items.Add(busstops);
busstops = new ComboBoxItem("410000015552", "Bothal Street (N-Bound), Byker ");
comboBox1.Items.Add(busstops);
现在我喜欢单击一个项目并单击一个按钮,一个消息框会出现,显示所选项目的值。
但问题是组合框只能显示像“新桥街...”这样的文本,因为只有文本在我的组合框中,我喜欢显示它的值..
像这样的东西:
Messagebox.show(combobox.selectedCombboxItem.Value);
我需要做什么?
谢谢!