I have a visually complex app with a lot of user interface components and 3rd party controls. On startup, it goes into a momentary conniption fit as everything resizes and stuff loads in Form_Load (but mostly due to resizing).
So I thought the solution might be to hide the form in the beginning of the Form_Load event and then show it at the end. However, it turns out that the form is already visible when the code enters Form_Load event.
How can I ensure that the form shows up when it's all ready and resized.