6

我尝试在 WPF 中实现 Splash Screnn。我在 MSDN 中找到了一些不错的例子,但是有一个地方:

private void _applicationInitialize(SplashScreen splashWindow)
{

    Thread.Sleep(1000);

    // Create the main window, but on the UI thread.

    Dispatcher.BeginInvoke(DispatcherPriority.Normal, (Invoker)delegate
    {

        Window1 MainWindow = new Window1();

        Helper.setWin(MainWindow);

        MainWindow.Show();

    });

}

问题是Helper,那里有什么类以及它必须如何实现。有人可以粘贴一个例子或smth吗?

4

2 回答 2

12

还有一种更简单的方法:

http://msdn.microsoft.com/en-us/library/cc656886.aspx

  1. 将图像文件添加到 WPF 应用程序项目。有关更多信息,请参见如何:将现有项添加到项目中。
  2. 在解决方案资源管理器中,选择图像。
  3. 在“属性”窗口中,单击“生成操作”属性的下拉箭头。
  4. 从下拉列表中选择 SplashScreen
于 2009-11-16T16:54:45.290 回答
6

您可以使用这样的代码在启动时显示图像:

<Application
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml" Startup="Application_Startup">

在后面的代码中:

private void Application_Startup(object sender, StartupEventArgs e)
{
    SplashScreen screen = new SplashScreen("Images/splash.bmp");
    screen.Show(true);
}
于 2009-11-16T12:37:21.770 回答