一、设置图片的生成操作
程序启动时会出现0.5秒的图片显示,再显示程序界面。
二、写代码实现相同效果
/// <summary> /// App.xaml 的交互逻辑 /// </summary> public partial class App : Application { protected override void OnStartup(StartupEventArgs e) { SplashScreen s = new SplashScreen("DebugLZQ.JPG"); s.Show(false); s.Close(new TimeSpan(0, 0, 10)); base.OnStartup(e); } }