2

我创建了一个名为 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);

我需要做什么?

谢谢!

4

2 回答 2

2

Combobox 将返回一个对象,您需要将其转换ComboBoxItem为才能访问Value.

Messagebox.show(((ComboBoxItem)combobox.SelectedItem).Value);
于 2013-03-28T13:22:42.143 回答
1

selectedCombboxItem 返回一个对象,MessageBox.Show()将调用ToString().

您需要将 selectedCombboxItem 转换为您自己的类型

Messagebox.show(((ComboBoxItem)combobox.selectedCombboxItem).Value);
于 2013-03-28T13:22:22.200 回答