作用:是一个下拉框,用于以下拉列表的方式展示数据。
常用属性:
常用事件:
下拉列表框内容选择变化时触发
后台代码示范:
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e){//获取被选中的内容string text = comboBox1.Text;MessageBox.Show("被选中" + text);//向下拉框中添加内容comboBox1.Items.Add("添加的内容");//移除指定的内容comboBox1.Items.Remove("2");//工具不同的选择,执行不同的逻辑switch (comboBox1.SelectedItem.ToString()){case "1":MessageBox.Show("1");break;//......}//显示默认内容comboBox1.SelectedIndex = 3;//清空内容comboBox1.Items.Clear();
}