Hopefully I\'m just missing something obvious, but I\'m trying to get my head around the differences between the Load and the Shown events in Windows Forms.
Traditio
The Shown event occurs after the Load event. The main difference is not in the visibility of the form but in its state (width, height, etc.).
To clarify, here is an example. Consider a form that has a default size of 100, 200 and a WindowState that is Maximized. In the Load event handler, the size will be 100, 200. But in the Shown event handler, the size will be your screen size.