c# listbox 获取选中项

2024-11-26 09:28:23
推荐回答(4个)
回答1:

MessageBox.Show(listBox1.SelectedIndex,listBox1.SelectedItem);
这样写不编译不过的。因为MessageBox.Show方法没有int型的重载方法。
并且你这么写也达不到你想要的目的,listBox1.SelectedIndex会显示弹出窗口的内容里,listBox1.SelectedItem会显示在弹出窗口的标题上面。

如果非要这么就显示的做字符串转换
MessageBox.Show(listBox1.SelectedIndex.ToString(),listBox1.SelectedItem.ToString());

想写在一起显示可改成
MessageBox.Show(listBox1.SelectedIndex.ToString() + listBox1.SelectedItem.ToString());

回答2:

语法格式如下:
public static MessageBox.DialogResultShow(string text );

text 必须为 string 类型.

回答3:

textBox2.Text = listBox1.Text的
或尝试
textBox2.Text = listBox1.SelectedItem.Text

回答4:

MessageBox.Show(listBox1.SelectedIndex,listBox1.SelectedItem.Text);