Ejemplo n.º 1
0
 public static void ReleaseMouse()
 {
     This._TurnedOn  = false;
     This._TurnedOff = true;
     This.BlockInput(false);
     Draw.cache();
 }
Ejemplo n.º 2
0
 private static void FreezeWindowsProcess()
 {
     while (This._TurnedOn)
     {
         This.BlockInput(true);
     }
     while (This._TurnedOff)
     {
         This.BlockInput(false);
     }
     Thread.Sleep(250);
 }