mirror of
https://github.com/k1tbyte/Wand-Enhancer.git
synced 2026-08-28 22:01:17 +00:00
27 lines
652 B
C#
27 lines
652 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using WandEnhancer.Core;
|
|
using WandEnhancer.Core.Services;
|
|
using WandEnhancer.View.MainWindow;
|
|
using MessageBox = System.Windows.Forms.MessageBox;
|
|
|
|
namespace WandEnhancer
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App
|
|
{
|
|
protected override void OnStartup(StartupEventArgs e)
|
|
{
|
|
LocalizationManager.Initialize();
|
|
this.MainWindow.Show();
|
|
}
|
|
|
|
public new static void Shutdown()
|
|
{
|
|
Current.Dispatcher.Invoke(() => Current.Shutdown());
|
|
}
|
|
}
|
|
} |