在CMainFrame中丢弃ALT键按下

时间:2010-09-29 05:50:36

标签: c++ visual-c++ mfc mdi mfc-feature-pack

我有以下代码:

CMainFrame* pFrame = new CMainFrame;
if (!pFrame)
    return FALSE;
m_pMainWnd = pFrame;
// create and load the frame with its resources
pFrame->LoadFrame(IDR_APP_MAINFRAME,
    WS_OVERLAPPEDWINDOW | FWS_ADDTOTITLE, NULL,
    NULL);
// The one and only window has been initialized, so show and update it
pFrame->ShowWindow(SW_SHOWMAXIMIZED);

问题是,当我按<ALT>时,会弹出菜单(IDR_APP_MAINFRAME)。 如何始终隐藏菜单并且不响应印刷机?

我听说这是由于MFC中的加速器控制,但我在项目解决方案中看不到使用VS2008的控件..

1 个答案:

答案 0 :(得分:0)

CMainFrame覆盖PreCreateWindow并销毁菜单。尝试这样的事情:

BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
        if(cs.hMenu!=NULL)
        {
                ::DestroyMenu(cs.hMenu);
                cs.hMenu = NULL;
        }
        return CFrameWnd::PreCreateWindow(cs);
}