What is the fast and effective way to open Form2 from Form1?
I work in WinCE (limited memory and CPU power) so this becomes important.
|
1
|
What is the fast and effective way to open Form2 from Form1? I work in WinCE (limited memory and CPU power) so this becomes important.
|
|||
|
|
|
Depending on your requirements, you might trick your users to see a splash screen when your application loads. During this time, you instantiate important forms in the background. This approach should give you a few extra seconds that most users don't think of as "being slow". Users usually accept that an app starts slower if it works reasonably fast afterwards. |
||
|
|
|
|
The easy way:
If you can handle the memory, you can create the form in the background and popup when desired. This should give the user a nice, quick experience. There may be other optimizations to alleviate memory pressure. |
|||
|
|
|
You have very few options, this is about it:
The Form class already knows how to Dispose() itself automatically, no savings there. The only exception is when you use ShowDialog(). In that case, the Form class does not dispose itself. Giving you a chance to retrieve the options selected by the user without incurring the wrath of ObjectDisposedException. Now you must do it yourself:
Keeping a Form object lean is mostly an exercise in minimizing the UI. Use as few Controls as possible, they are very expensive. Use the Paint event instead of a Label. Make your own control instead of a composite UserControl. |
||
|
|
|
|
If you want the form be open quicker in terms of user responsiveness AND you can handle the memory overhead you might consider "preloading" the form. Instantiate the form in the start up procedure of your app and cache the form in a global variable (or make it a singleton and create an instance). This increases app start up time but gives you improved responsiveness when you later show the form. If the form has a lot of controls calling show then hide against the form in start up will also preload the forms controls, further reducing the time it takes to subsequently display the form. This is not usualy recommended on the full .net framework! |
||
|
|
|
|
Try caching forms. The killer part is the creation of the form (the creation of the windows handles e.g. the running of InitializeComponent). If you create the forms when your app starts then you will notice a small (yet noticable) gain in performance when showing the forms later. This is obviously at the cost of start up time. So at startup:
And later:
That kind of thing. |
||
|
|