測試啟動畫面
如果你的應用程式輕巧而簡單,它將以非常快的速度啟動,並且具有相似的速度將會出現並消失啟動畫面。
一旦 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 秒鐘,因此你將有更多時間來測試啟動畫面。