Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
You can create a System.Threading.Timer within the Load event and have it wait about 250ms before processing your callback. Also, the callback will already happen on another thread (it doesn't invoke on the main thread), so there's no need to create another thread explicitly. Or, you can put your code in the Shown() event... I believe that's the one that fires after the SetVisibleCore() has been called on the form to draw everything.
|