3

我正在尝试向我的菜单添加加速器,当我按下“Ctrl+R”时,它应该发送命令ID_VIEW_RESULTS,但它没有。单击菜单项可以正常工作,但不能翻译加速器,这就是我所拥有的:

我的应用程序.h

#define WIN32_LEAN_AND_MEAN
#include <Windows.h>

#define ID_MAINMENU 101
#define ID_MENUACC  102

#define ID_VIEW_RESULTS 2001

我的应用程序.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

我的应用程序.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;
}

我自己看不出这不起作用的充分理由,谁能指出我做错了什么或给我任何建议?

4

1 回答 1

2

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

于 2012-10-11T21:49:51.713 回答