实现C# listBox控件用法:单击控件中任一选项,使另一控件(文本框)显示相应内容
原理:运用switch语句,根据不同选中值,实现不同内容
- private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
- {
- int a = listBox1.SelectedIndex ;//将listBox的选中值给a附值
- switch (a)
- {
- case 0:
- textBox1 .Text ="int";
- break;
- case 1:
- textBox1.Text = "long";
- break;
- case 2:
- float b;
- b = 5F;
- textBox1.Text = b.ToString ();
- break;
- default :
- textBox1.Text = "请单击选项";
- break;
- }
以上就是C# listBox控件用法,实现了单击控件中任一选项,使另一控件(文本框)显示相应内容。
【编辑推荐】