2015-09-23 67 views
1

我們的應用程序在啓動時沒有出現在任務欄中,因爲它是通過ShowDialog顯示的WPF窗口,但未使用System.Windows.Application。是否可以在任務欄中顯示該應用程序?在任務欄啓動時顯示wpf應用程序,而不使用System.Windows.Application

var spl = new SplashScreen(); // Nothing in the taskbar, but it should... 
spl.ShowDialog(); 

// initial application 

spl.Close(); 

var app = new App(); 
app.Run(mainWindow); // Now we have some thing in the taskbar 

非常感謝。

回答

0
var sp1 = SplashScreen();  
sp1.ShowInTaskbar = true; 
+0

答案很簡單,我沒有明白:'splash.ShowInTaskbar = true;'這就是全部。如果你把這個添加到你的答案中,我會接受它。所以這個問題將被關閉。 – BendEg

相關問題