1:控件Enabled属性设成false,怎么还能让它响应click事件
2:动态添加控件过程如下
在基from中
public System.Windows.Forms.RadioButton SimpleTimeperiodRadioButton;
public void AddTimePeriodControl()

this.SimpleTimeperiodRadioButton = new System.Windows.Forms.RadioButton();
this.SimpleTimeperiodRadioButton.CheckedChanged +=new EventHandler(SimpleTimeperiodRadioButtonCheck);
    
}//要在好几个派生类中用到
然后在派生类中调用AddTimePeriodControl()方法,控件是能添加进来。一个派生类中点击不同的菜单都是先删除出这些控件在加载。但是事件响应出了问题,第一次加载的时候可以响应,在删除在加载就不响应了????????????????????