Files
ContextMenuManager/ContextMenuManager/Program.cs
2021-08-21 19:47:02 +08:00

23 lines
620 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using BluePointLilac.Methods;
using ContextMenuManager.Methods;
using System;
using System.Windows.Forms;
namespace ContextMenuManager
{
//兼容.Net3.5和.Net4.0兼容Vista - Win11
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
if(SingleInstance.IsRunning()) return;
AppString.LoadStrings();
Updater.PeriodicUpdate();
XmlDicHelper.ReloadDics();
Application.Run(new MainForm());
}
}
}