generated from wenjy/SlnMesnac
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
631 B
C#
27 lines
631 B
C#
using SlnMesnac.WPF.Attribute;
|
|
using System;
|
|
using System.Windows;
|
|
using System.Windows.Threading;
|
|
|
|
namespace SlnMesnac.WPF.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);
|
|
}
|
|
}
|
|
}
|