Exemplo n.º 1
0
 public static void KeyDown(Keys key)
 {
     if (Input.IsKeyDown(key) == false)
     {
         Input.KeyDown(key);
     }
 }
Exemplo n.º 2
0
 public static void KeyUp(Keys key)
 {
     if (Input.IsKeyDown(key) == true)
     {
         Input.KeyUp(key);
     }
 }
Exemplo n.º 3
0
 static public void RightMouseButtonUp()
 {
     if (Input.GetKeyState(Keys.RButton) == true)
     {
         Input.RightUp();
     }
 }
Exemplo n.º 4
0
 static public void RightMouseButtonDown()
 {
     if (Input.GetKeyState(Keys.RButton) == false)
     {
         Input.RightDown();
     }
 }
Exemplo n.º 5
0
 static public void LeftMouseButtonUp()
 {
     if (Input.GetKeyState(Keys.LButton) == true)
     {
         Input.LeftUp();
     }
 }
Exemplo n.º 6
0
 static public void LeftMouseButtonDown()
 {
     if (Input.GetKeyState(Keys.LButton) == false)
     {
         Input.LeftDown();
     }
 }
Exemplo n.º 7
0
 public static void KeyPress(Keys key)
 {
     Input.KeyDown(key);
     Thread.Sleep(1);
     Input.KeyUp(key);
 }