我嘗試在WPF中實現Splash Screnn。我發現在MSDN一些不錯的ehample,但有一個地方:WPF啓動畫面執行
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();
});
}
問題是助手,什麼類是存在的,它必須如何實現。有人可以粘貼一個例子或smth?
您錯過了最後一步:4.從下拉列表中選擇SplashScreen。 – 2009-11-16 17:54:23
不錯的地方,我的不好 – Guy 2009-11-16 19:44:57
這個答案很好,特別適合初學者。心存感激。 – Vytas 2009-11-17 08:03:48