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