I want to have a custom splash screen in my app and have successfully followed the guidance here: http://msdn.microsoft.com/en-us/library/windows/apps/xaml/Hh868191(v=win.10).aspx
...but tweaked it to fit the MVVM model a bit.
The issue is that i am getting the "flicker" mentioned in that article. This is caused by the splashscreen rendering slightly before its "ready" i.e. the image on the page isn't loaded yet. This causes the page to load and then the image to "pop" in.
The post suggests that if you are seeing a flicker it is like that Window.Current.Activate is being calledbefore the content of the page finishes rendering. It offers a couple of methods (using a timer) to delay calling that.
However with Caliburn Micro and navigation to the Root view using: DisplayRootView<SplashView>(args);
I dont think i have the opportunity to control that.
Any suggestions?
References:
Avoiding flicker in extended splash: http://msdn.microsoft.com/en-us/library/windows/apps/hh465338.aspx#ts_flicker_cs
Thanks,
-Chris.