2011-03-27 47 views
1

嘿,我有关键事件处理程序的一些问题。这是来源:C#检测所有窗口中的关键事件

using System; 
     using System.Collections.Generic; 
     using System.ComponentModel; 
     using System.Data; 
     using System.Drawing; 
     using System.Linq; 
     using System.Text; 
     using System.Windows.Forms; 
     using System.Diagnostics; 
     using System.Threading; 

     namespace WindowsFormsApplication3 
     { 
      public partial class Form1 : Form 
      { 
       public Form1() 
       { 
        InitializeComponent(); 
       } 

       [System.Runtime.InteropServices.DllImport("user32.dll")] 
       public static extern void mouse_event(int dwFlags, int dx, int dy, int cButtons, int dwExtraInfo); 


     public const int MOUSEEVENTF_LEFTDOWN = 0x02; 
     public const int MOUSEEVENTF_LEFTUP = 0x04; 
     public const int MOUSEEVENTF_RIGHTDOWN = 0x08; 
     public const int MOUSEEVENTF_RIGHTUP = 0x10; 


       public void Form1_KeyPessed(object sender, KeyEventArgs e) 
       { 
        if (e.KeyCode == Keys.F2) 
        { 
         DrawSquare(); 
        } 
       } 

       public void DrawSquare() 
       { 
        int line = Convert.ToInt16(textBox1.Text); 
        int time = Convert.ToInt16(textBox2.Text); 

        int x = MousePosition.X; 
        int y = MousePosition.Y; 
        Cursor.Position = new Point(x - line/2, y - line/2); 
        mouse_event(MOUSEEVENTF_LEFTDOWN, x, y, 0, 0); 
        Thread.Sleep(time); 
        Cursor.Position = new Point(x - line/2, y + line/2); 
        Thread.Sleep(time); 
        Cursor.Position = new Point(x - line/2, y + line/2); 
        Thread.Sleep(time); 
        Cursor.Position = new Point(x + line/2, y - line/2); 
        Thread.Sleep(time); 
        Cursor.Position = new Point(x - line/2, y - line/2); 
        mouse_event(MOUSEEVENTF_LEFTUP, x, y, 0, 0); 
        Thread.Sleep(time); 
        Cursor.Position = new Point(x, y); 
       } 
      }  
     } 

现在它只绘制广场,当我按F2在窗体中,但我希望它可以在所有窗口上工作。 我还需要什么? (这是有点完美形状的自动抽屉)

+1

有关[mouse_event'文档](http://msdn.microsoft.com/zh-cn/library/ms646260.aspx)的注意事项。它说:**这个功能已被取代。请使用['SendInput'](http://msdn.microsoft.com/zh-cn/library/ms646310.aspx)** – 2011-03-27 16:05:01

+0

为什么要删除我添加的标签?更多标签有助于对您的问题进行分类,以便其他人可以找到它。它还帮助回答问题的人找到它。他们通常会遵循他们熟悉的特定标签。 – 2011-03-28 04:19:50

回答

2

如果您只想处理几个组合键,则可以使用RegisterHotKey。如果您想检测所有不同的按键事件,请使用the global hook as Paul suggested

+0

我以前没有遇到过RegisterHotKey,但似乎这个用例更简单的解决方案... – 2011-03-28 10:33:08

+0

@Paul:的确,确实如此。您的全球挂钩解决方案非常出色,而且我一直都在使用。但是对于一个简单的热键,这有点像使用火箭筒来杀死苍蝇。它会工作,但它确实是过度杀伤,并且实际上会损害整体性能。全局钩子[应该真的很谨慎](http://msdn.microsoft.com/en-us/library/ms644959.aspx)。当然,Windows API非常大,我经常在回答问题时忘记了'RegisterHotKey' ... :-) – 2011-03-29 03:39:15

+0

您能举个简单的例子吗? – giger 2011-03-29 17:21:28