I have WinForms application. My Form derived class has UserControl derived class. I simply put several controls into one UserControl to simplify reuse. The Load
Load
One reason for the Load event to stop firing is when you have a parent of your control that does something like this
protected override void OnLoad(EventArgs e) { //do something }
you always need to make sure to do this
protected override void OnLoad(EventArgs e) { //do something base.OnLoad(e); }