摘要: VS2008下的实现方式:1.在项目里面引入一个图片,编译属性设为资源,然后在App.xaml.cs里面重载OnStartup方法: public partial class App : Application { protected override void OnStartup(StartupEventArgs e) { SplashScreen splashScreen = new SplashScreen("pic.jpg"); splashScreen.Show(true); base.OnStartup(e); } }如果是窗体... 阅读全文
posted @ 2011-12-20 19:30 .net万剑 阅读(3288) 评论(0) 推荐(0) 编辑