Files
QuickLook/QuickLook/App.xaml.cs
Paddy Xu 7e2001bc4d WIP
2017-04-12 17:58:52 +03:00

30 lines
707 B
C#

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using System.Windows;
using QuickLook.Plugin;
using QuickLook.Utilities;
namespace QuickLook
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
public static string AppPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
private void Application_Startup(object sender, StartupEventArgs e)
{
PluginManager.GetInstance();
BackgroundListener.GetInstance();
}
}
}