How to speed up loading the splash screen.

Posted by AngryHacker on Stack Overflow See other posts from Stack Overflow or by AngryHacker
Published on 2010-03-25T17:33:06Z Indexed on 2010/03/25 17:43 UTC
Read the original article Hit count: 476

Filed under:
|
|
|
|

I am optimizing the startup of a WinForms app. One issue I identified is the loading of the splash screen form. It takes about half a second to a second.

I know that multi-threading is a no-no on UI pieces, however, seeing how the splash screen is a fairly autonomous piece of the application, is it possible to somehow mitigate its performance hit by throwing it one some other thread (perhaps in the way Chrome does it), so that the important pieces of the application can actually get going.

© Stack Overflow or respective owner

Related posts about splash-screen

Related posts about c#