调用SplashScreen类
为 windows presentation foundation (WPF) 应用程序提供一个启动屏幕。
url:http://msdn.microsoft.com/zh-cn/library/system.windows.splashscreen.aspx
实例
public partial class App:Application { [STAThread] static void Main(string[] args) { SplashScreen s = new SplashScreen("2.jpg"); s.Show(true); App a = new App(); a.Run(); } }