键盘HOOK

static HWND s_hDialog = NULL;    // HOOK使用的本对话框HWND
static HHOOK s_hHook = NULL;    // HOOK句柄

BOOL CDlg::OnInitDialog()
{
    CDialog::OnInitDialog();
    
    // TODO: Add extra initialization here

    s_hDialog = GetSafeHwnd();
    s_hHook = SetWindowsHookEx(WH_KEYBOARD, KeyboardHookProc, NULL, GetCurrentThreadId());

    return TRUE;  // return TRUE unless you set the focus to a control
                  // EXCEPTION: OCX Property Pages should return FALSE

}


BOOL CDlg::DestroyWindow()
{
    // TODO: Add your specialized code here and/or call the base class
    UnhookWindowsHookEx(s_hHook);

    return CDialog::DestroyWindow();
}

LRESULT CALLBACK CDlg::KeyboardHookProc(int code, WPARAM wParam, LPARAM lParam)
{
    if(code < 0)
    {
        return CallNextHookEx(s_hHook, code, wParam, lParam);
    }
    
    if(wParam == VK_RETURN)
    {
        if(IsWindow(s_hDialog))
        {
            if((1 << 30) & lParam)// 键盘按下
            {
                UINT ID = (GetFocus())->GetDlgCtrlID();
                ::PostMessage(s_hDialog, WM_COMMAND, ID, 0);    
            }
        }
        
        //return 1;
    }
    
    return CallNextHookEx(s_hHook, code, wParam, lParam);
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值