Re: [2.0] Resizing Controls
I applaud your thinking. I've had numerous people argue with me that calling event handlers directly is OK. It's just not the right thing to do, as you say. Your first suggestion is the way to go. The second suggestion would work for the Click event of some controls, like a Button, that are born to be clicked and have a PerformClick method. Otherwise go with your first option.
Re: [2.0] Resizing Controls
Sounds good, but what about overheat? When the user resizes the form, the _Resize event gets called a dozen of times in some situations. It's just one function, but won't it slow down too much?
Otherwise I'll do what you suggest. Thanks!
Re: [2.0] Resizing Controls
Give it a try and see. If you notice a lag then post the code and we'll see if we can optimise it but I doubt there'll be a problem.