I have a main window in my application which has lot of components and usercontrols. Since this window is taking so long to load, I need to implement a new secondary window(containing buttons for create new, open, recent files etc and details about the application) which needs to be opened in parallel to main window.
since both windows are loading together, the buttons of secondary windows are disabled until the main window is completely loaded. How can I enable the secondary window buttons when the main window is loading in background. Also, can I somehow minimize the main window alone even though its loading in background?
Any solution or idea, suggestion for advanced features are welcome. Thanks in advance.