111,126
社区成员
发帖
与我相关
我的任务
分享
public Form1()
{
InitializeComponent();
this.comboBox1.LostFocus += new EventHandler(comboBox1_LostFocus);
}
void comboBox1_LostFocus(object sender, EventArgs e)
{
//throw new NotImplementedException();
this.Controls.Remove(comboBox1);
}