文件名称:使用组合框-C# WinForm实践开发教程
文件大小:2.55MB
文件格式:PPT
更新时间:2024-05-14 20:34:17
C# WinForm实践开发教程
使用组合框 private void Form1_Load(object sender, EventArgs e) { this.comboBox1.Items.Add("财务部"); this.comboBox1.Items.Add("产品部"); this.comboBox1.Items.Add("销售部"); this.comboBox1.Items.Add("生产部"); //默认的选择是"产品部" this.comboBox1.SelectedIndex = 1; this.comboBox2.Items.Add("财务部"); this.comboBox2.Items.Add("产品部"); this.comboBox2.Items.Add("销售部"); this.comboBox2.Items.Add("生产部"); //默认的选择是"产品部" this.comboBox2.SelectedIndex = 1; this.comboBox3.Items.Add("财务部"); this.comboBox3.Items.Add("产品部"); this.comboBox3.Items.Add("销售部"); this.comboBox3.Items.Add("生产部"); //默认的选择是"产品部" this.comboBox3.SelectedIndex = 1; }