Showing a Splash Screen whilst initializing a WPF Prism application

来源:互联网 发布:mac版网游加速器 编辑:程序博客网 时间:2024/06/10 12:52
I hosted an internal session on Patterns & Practices Prism (or Composite Application Guidance) and one of the attendees asked if there was a way I could avoid showing the application’s shell in its unpopulated state whilst the Modules load.

There are a number of ways of doing this but I thought I’d share the approach I use in one of my applications.

Now, there’s obviously going to be some delay to your app whilst Prism loads your modules, or you wouldn’t be here, and we don’t want to risk the user trying to start multiple instances of the application or wondering what’s going on – so let’s show a Splash screen.

I chose to implement the splash screen inside my Prism bootstrapper where I create the Shell. Here’s the typical code

publicoverride DependencyObject CreateShell()
{
    Shell shell = new Shell();
    shell.Show();
    return shell;
}

And here’s what I’d change to introduce a splash screen (e.g. SplashScreen.xaml) that closes when Prism is done loading modules:

publicoverride DependencyObject CreateShell()
{
    SplashScreen splash = new SplashScreen();
    splash.Show();
    Shell shell = new Shell();
    shell.Dispatcher.BeginInvoke((Action) delegate
        {
            shell.Show();
            splash.Close();
        });
    return shell;
}

This takes advantage of the fact that the Bootstrapper and ModuleLoader run on the UI thread and queues a delegate on the Dispatcher that will only get invoked when all the other stuff is done.