asp.net에서 MFC 단일 문서의 기본 메뉴 표시줄을 삭제하는 두 가지 방법

2557 단어
다음과 같은 두 가지 방법이 있습니다.
첫 번째 방법: 프레임 클래스의 Create 함수를 다음과 같이 다시 로드합니다.
 
  
BOOL CMainFrame::Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle , const RECT& rect , CWnd* pParentWnd , LPCTSTR lpszMenuName , DWORD dwExStyle , CCreateContext* pContext)
{
    // TODO: /
//    return CFrameWnd::Create(lpszClassName, lpszWindowName, dwStyle, rect, // //pParentWnd, lpszMenuName, dwExStyle, pContext);
HMENU nIDorHMenu = NULL;
     return CFrameWnd::CreateEx(dwExStyle,lpszClassName,lpszWindowName,dwStyle,
         rect.left,rect.top,rect.right-rect.left,rect.bottom-rect.top,
         pParentWnd->GetSafeHwnd(),
         nIDorHMenu,
         (LPVOID)pContext);
}

두 번째 방법: 모든 메뉴 항목을 수동으로 삭제합니다.구체적으로 모든 메뉴 항목을 삭제하는 함수를 정의합니다.
 
  
/*!
* \brief 。
*
* 。
* \return 。
*/
static void DelAllMenu(HMENU hMenu)
{
    //
    int Menucount = GetMenuItemCount(hMenu);
    for (int i = Menucount-1;i>-1;i--)
    {
        ::DeleteMenu(hMenu,i, MF_BYPOSITION);
    }
}

그런 다음 프레임 클래스의 Oncreate 함수에서 이 함수를 다음과 같이 호출합니다.
 
  
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
    if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
        return -1;

    if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
        | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
        !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
    {
        TRACE0("
");
        return -1; //
    }
    if (!m_wndStatusBar.Create(this) ||
        !m_wndStatusBar.SetIndicators(indicators,
         sizeof(indicators)/sizeof(UINT)))
    {
        TRACE0("
");
        return -1; //
    }
    // TODO: ,
    m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
    EnableDocking(CBRS_ALIGN_ANY);
    DockControlBar(&m_wndToolBar);
    //
    CMenu *pMenu = GetMenu();
    if (NULL!=pMenu)
    {
DelAllMenu(pMenu->GetSafeHmenu());
    }
    return 0;
}

좋은 웹페이지 즐겨찾기