摘要: private void comboBox2_SelectedIndexChanged(object sender, EventArgs e) { string a = ((ComboBoxItem)comboBox2.SelectedItem).Value; textBox2.Text = a; } private void Form1_Load(object sender, EventArgs e) { ComboBoxItem i1 = new ComboBoxItem(); i1.Text = "this ... 阅读全文
posted @ 2011-11-01 11:08 小锋神 阅读(13181) 评论(0) 推荐(0) 编辑