2014-01-29 18:33:24 +08:00
|
|
|
|
using System;
|
2014-10-21 18:16:05 +08:00
|
|
|
|
using System.Collections.Generic;
|
2014-01-29 18:33:24 +08:00
|
|
|
|
using System.Linq;
|
2015-11-02 21:43:19 +08:00
|
|
|
|
using System.Threading;
|
2015-10-31 07:17:34 +08:00
|
|
|
|
using System.Windows;
|
2014-10-21 18:16:05 +08:00
|
|
|
|
using Wox.CommandArgs;
|
2015-10-31 04:47:03 +08:00
|
|
|
|
using Wox.Core.Plugin;
|
2014-03-11 23:54:37 +08:00
|
|
|
|
using Wox.Helper;
|
2015-11-05 06:49:40 +08:00
|
|
|
|
using Stopwatch = Wox.Infrastructure.Stopwatch;
|
2014-01-29 18:33:24 +08:00
|
|
|
|
|
2014-10-21 18:16:05 +08:00
|
|
|
|
namespace Wox
|
|
|
|
|
{
|
|
|
|
|
public partial class App : Application, ISingleInstanceApp
|
|
|
|
|
{
|
|
|
|
|
private const string Unique = "Wox_Unique_Application_Mutex";
|
|
|
|
|
public static MainWindow Window { get; private set; }
|
|
|
|
|
|
|
|
|
|
[STAThread]
|
|
|
|
|
public static void Main()
|
|
|
|
|
{
|
|
|
|
|
if (SingleInstance<App>.InitializeAsFirstInstance(Unique))
|
|
|
|
|
{
|
|
|
|
|
var application = new App();
|
|
|
|
|
application.InitializeComponent();
|
|
|
|
|
application.Run();
|
|
|
|
|
SingleInstance<App>.Cleanup();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnStartup(StartupEventArgs e)
|
|
|
|
|
{
|
2015-11-05 05:49:36 +08:00
|
|
|
|
Stopwatch.Debug("Startup Time", () =>
|
2015-11-02 10:47:43 +08:00
|
|
|
|
{
|
|
|
|
|
base.OnStartup(e);
|
|
|
|
|
DispatcherUnhandledException += ErrorReporting.DispatcherUnhandledException;
|
|
|
|
|
AppDomain.CurrentDomain.UnhandledException += ErrorReporting.UnhandledExceptionHandle;
|
|
|
|
|
|
2015-11-04 09:10:54 +08:00
|
|
|
|
ThreadPool.QueueUserWorkItem(o => { ImageLoader.ImageLoader.PreloadImages(); });
|
2015-11-02 10:47:43 +08:00
|
|
|
|
Window = new MainWindow();
|
|
|
|
|
PluginManager.Init(Window);
|
|
|
|
|
CommandArgsFactory.Execute(e.Args.ToList());
|
2015-11-05 05:35:04 +08:00
|
|
|
|
});
|
2014-10-21 18:16:05 +08:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool OnActivate(IList<string> args)
|
|
|
|
|
{
|
|
|
|
|
CommandArgsFactory.Execute(args);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-01-29 18:33:24 +08:00
|
|
|
|
}
|