English 中文(简体)
点击时如何从下拉框生成文本
原标题:
  • 时间:2009-03-15 04:30:02
  •  标签:

for example dropdown box contain three things Simon,Jaison,Rahul..if you click Jaison will generate jaison as a text,,or Simon will generate Simon as a text

最佳回答

你的问题有些不清楚,但如果你试图从当前选定的项目中获取字符串(当选择发生变化时),那么...

处理SelectedIndexChanged事件:

private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
    string selectedText = comboBox1.SelectedItem.ToString();

    // Do whatever you want to do with it, for example...
    label1.Text = selectedText;
}
问题回答

暂无回答




相关问题
热门标签