【问题标题】:Program is unresponsive for a couple of seconds程序几秒钟无响应
【发布时间】:2012-06-05 11:40:58
【问题描述】:

我找到了一种在 C# 中捕获 Print Screen 按钮的方法。当按下Alt + Print Screen 时,会弹出一个简单的消息框,说明按键已被按下。 但是它在几秒钟后没有响应。我不知道为什么会这样。

这是我使用的代码:

static class Program
{
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        _hookID = SetHook(_proc);
        Application.Run(new Form1());
        UnhookWindowsHookEx(_hookID);  
    }

    /****************************************/
    private const int WH_KEYBOARD_LL = 13;
    //private const int WH_KEYBOARD_LL = 13;  
    private const int WM_KEYDOWN = 0x0100;
    private const int VK_F1 = 0x70;
    private static LowLevelKeyboardProc _proc = HookCallback;
    private static IntPtr _hookID = IntPtr.Zero;

    private static IntPtr SetHook(LowLevelKeyboardProc proc)
    {
        using (Process curProcess = Process.GetCurrentProcess())
        using (ProcessModule curModule = curProcess.MainModule)
        {
            return SetWindowsHookEx(WH_KEYBOARD_LL, proc,
                GetModuleHandle(curModule.ModuleName), 0);
        }
    }

    private delegate IntPtr LowLevelKeyboardProc(
        int nCode, IntPtr wParam, IntPtr lParam);

    private static IntPtr HookCallback(
        int nCode, IntPtr wParam, IntPtr lParam)
    {

        if (nCode >= 0)
        {
            Keys number = (Keys)Marshal.ReadInt32(lParam);
            if (number == Keys.PrintScreen)
            {
                if ((wParam == (IntPtr)260 && Keys.Alt == Control.ModifierKeys && number == Keys.PrintScreen))
                {
                    MessageBox.Show("You pressed alt+ print screen");
                }
            }

        }
        return CallNextHookEx(IntPtr.Zero, nCode, wParam, lParam);

    }

    [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
    private static extern IntPtr SetWindowsHookEx(int idHook,
        LowLevelKeyboardProc lpfn, IntPtr hMod, uint dwThreadId);

    [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
    [return: MarshalAs(UnmanagedType.Bool)]
    private static extern bool UnhookWindowsHookEx(IntPtr hhk);

    [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
    private static extern IntPtr CallNextHookEx(IntPtr hhk, int nCode,
        IntPtr wParam, IntPtr lParam);

    [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
    private static extern IntPtr GetModuleHandle(string lpModuleName); 
}

有没有人知道为什么它在消息框之后挂起?

【问题讨论】:

标签: c#


【解决方案1】:

在钩子回调完成执行之前,Windows 无法发送下一个键盘消息。显然,您确实想使用 MessageBox.Show(),这会阻止回调。 Windows 在宣布您的代码已损坏并禁用挂钩之前会忍受几秒钟。

改用 Debug.Print()。

【讨论】:

  • 我需要显示另一个表单,这似乎也阻止了它。最好的方法是什么?启动一个将显示表单的新线程?
  • 调用表单的 Show() 方法应该不成问题。 ShowDialog() 一个问题,这是一个阻塞调用。稍后使用 BeginInvoke() 方法运行代码,不要使用线程。
猜你喜欢
  • 2011-08-12
  • 1970-01-01
  • 2019-10-25
  • 2013-12-08
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多