Basically my application does a lot of things within LOADED
event of the main window.
I just want to show some splash screen during this time (LOADED
event) and don't show main window at all.
I found some example here http://www.codeproject.com/Articles/38291/Implement-Splash-Screen-with-WPF but it is not a good one. This tip is also doesn't cover my purpose.
Also I'd like to display each stage what I do under the LOADED event under the splash screen. So I thought adding a status update to the splash screen. Each completed task will update a splash screen status label.
Any clue how it could be done?
Thank you!