In my caliburn micro based MVVM application, I am showing Splash Screen in App.xaml.cs file as follows:
protected override void OnStartup(StartupEventArgs e)
{
SplashScreen splashScreen = new SplashScreen("SplashScreenTemplate.png");
splashScreen.Show(true, true);
base.OnStartup(e);
}
I also want to display text information (for example: expiration date) on this splash screen. Is it possible? How can I implement this behavior.
Thanks