mirror of
https://github.com/BluePointLilac/ContextMenuManager.git
synced 2026-01-14 06:04:00 +08:00
23 lines
620 B
C#
23 lines
620 B
C#
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());
|
||
}
|
||
}
|
||
} |