下面是C#界面编程的ListBox和ComboBox控件介绍,主要是关于关于C# ListBox的介绍。
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace ListAndCombo
- {
- public partial class ListAndCombo : Form
- {
- public ListAndCombo()
- {
- InitializeComponent();
- }
- private void Form1_Load(object sender, EventArgs e)
- {
- //初始化设置
- //ListBox 设置
- listBox1.Items.Add("1000 以下");
- listBox1.Items.Add("1001~2000");
- listBox1.Items.Add("2001~3000");
- listBox1.Items.Add("3001~4000");
- listBox1.Items.Add("4001~6000");
- listBox1.Items.Add("6001~8000");
- listBox1.Items.Add("8001~10000");
- listBox1.Items.Add("10000 以上");
- //ComboBox 设置
- comboBox1.Items.Add("身份证");
- comboBox1.Items.Add("学生证");
- comboBox1.Items.Add("教师证");
- comboBox1.Items.Add("军人证");
- comboBox1.Items.Add("护照");
- }
- private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
- {
- label3.Text = listBox1.SelectedItem.ToString();
- }
- private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
- {
- label4.Text = comboBox1.SelectedItem.ToString();
- }
- }
- }
以上就是对编程界面实现的C# ListBox的简单介绍。
【编辑推荐】