Tagged Questions
2
votes
6answers
192 views
Is there a Form event that gets called right before anything is drawn to the screen?
I've tried overriding the OnLoad event, but the form is getting drawn before this method finishes. I am calling the base.OnLoad method. But, the form is partially getting drawn (artifacts are seen) ...
0
votes
1answer
365 views
Main form's OnLoad override never gets called
The following problem has me stumped: I have a WinForms application which used to work just fine. On Windows7 however, my MainForm's "Load"-event handler is never invoked. I tried Googleing a bit and ...
0
votes
3answers
1k views
Add a Load event for Winforms Control just as Form class
is there a way I can get a Load event for System.Windows.Forms.Control just like System.Windows.Forms.Form.Load?
I want to run some initialize code before the control first shown.
Also, it would be ...