日期:2014-05-18  浏览次数:20873 次

combobox的值变化事件
请问:
combobox中值变化是哪个事件?
另外怎样注册这个事件?

谢谢!

------解决方案--------------------
TextChanged
------解决方案--------------------
TextChanged事件:
comboBox1.TextChanged += new System.EventHandler(comboBox1_TextChanged);
------解决方案--------------------
this.comboBox1.TextChanged += new System.EventHandler(this.comboBox1_TextChanged);


private void comboBox1_TextChanged(object sender, EventArgs e)
{

}