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
public override 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:
public override 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.
本文介绍了一种在Prism应用程序加载期间显示启动画面的方法。通过在Bootstrapper中实现,可以在模块加载完毕后自动关闭启动画面,并显示应用程序主界面。
1669

被折叠的 条评论
为什么被折叠?



