You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
625 B
C#

using Sln.Wcs.UI.Attribute;
using System;
using System.Windows;
using System.Windows.Threading;
namespace Sln.Wcs.UI.Page.Loading
{
/// <summary>
/// LoadingWindow.xaml 的交互逻辑
/// </summary>
[RegisterAsTransientAttribute]
public partial class LoadingWindow : Window
{
public LoadingWindow()
{
InitializeComponent();
}
protected override void OnClosed(EventArgs e)
{
base.OnClosed(e);
// 停止 Dispatcher 消息循环
Dispatcher.BeginInvokeShutdown(DispatcherPriority.Background);
}
}
}