private static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Tasks.LoadSettings(); HotkeyRegistor.Unregister(); HotkeyRegistor.Register(); Application.AddMessageFilter(new MessageFilter()); Application.Run(); HotkeyRegistor.Unregister(); }
//exit public static void Exit() { HotkeyRegistor.Unregister(); HideInTaskbar(); Application.ExitThread(); }