WinAPI - 菜单加速器无法正常工作

时间:2012-10-11 21:05:14

标签: c++ winapi menu resources keyboard-shortcuts

我正在尝试将加速器添加到我的菜单中,当我按下“Ctrl + R”时它应该发送命令ID_VIEW_RESULTS,但事实并非如此。它可以正常点击菜单项,但它没有翻译加速器,这就是我所拥有的:

MyApp.h

#define WIN32_LEAN_AND_MEAN
#include <Windows.h>

#define ID_MAINMENU 101
#define ID_MENUACC  102

#define ID_VIEW_RESULTS 2001

MyApp.rc

#include "MyApp.h"

/////////////////////////////////////////////////////////////////////////////
//
// Menu
//

ID_MAINMENU MENU 
BEGIN
    POPUP "&View"
    BEGIN
        MENUITEM "Calculated &Results...\aCtrl+R",  ID_VIEW_RESULTS
    END
END

/////////////////////////////////////////////////////////////////////////////
//
// Accelerator
//

ID_MENUACC ACCELERATORS 
BEGIN
    "^R",       ID_VIEW_RESULTS,        ASCII,  NOINVERT
END

MyApp.cpp中

#include "MyApp.h"

int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPTSTR lpCmdLine, int nCmdShow)
{
    UNREFERENCED_PARAMETER(hPrevInst);
    UNREFERENCED_PARAMETER(lpCmdLine);

    // Create and show main window, CMainWnd definition is dialog
    // resource template, works fine, irrelevant to problem.
    MainWnd = new CMainWnd();
    MainWnd->Show();

    MSG    Msg;
    HACCEL hAcc;
    hAcc = LoadAccelerators(hInst, MAKEINTRESOURCE(ID_MENUACC));

    while (GetMessage(&Msg, 0, 0, 0)) {
        if (!TranslateAccelerator(Msg.hwnd, hAcc, &Msg)) {
            TranslateMessage(&Msg);
            DispatchMessage(&Msg);
        }
    }

    return (int)Msg.wParam;
}

我自己看不出一个很好的理由为什么这不起作用,有人能指出我做错了什么或给我任何建议吗?

1 个答案:

答案 0 :(得分:1)

尝试使用MainWnd的HWND成员替换Msg.hwnd。如果有效,则Msg.hwnd不是获取消息的正确窗口(在Tanslate Accelerator参数中)。