测试启动画面
如果你的应用程序轻巧而简单,它将以非常快的速度启动,并且具有相似的速度将会出现并消失启动画面。
一旦 Application.Startup
方法完成后,启动画面消失,你可以按照以下步骤模拟应用程序启动延迟:
- 打开 App.xaml.cs 文件
- 使用命名空间
using System.Threading;
添加 - 覆盖
OnStartup
方法并在其中添加Thread.Sleep(3000);
:
代码应如下所示:
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading;
using System.Windows;
namespace WpfApplication1
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
Thread.Sleep(3000);
}
}
}
- 运行该应用程序。现在它将会启动大约 3 秒钟,因此你将有更多时间来测试启动画面。