mfc删除默认工具栏

时间:2013-03-30 15:31:32

标签: mfc fullscreen toolbar statusbar

我已经在学校项目的mfc中制作简单的桌面游戏,我设法让我的应用程序全屏显示并删除菜单栏但我无法找到如何删除默认的内置在我的应用程序或状态栏的工具栏中。我尝试了所有想到的东西......是否有某种get函数可以从你的CWnd对象调用来检索工具栏和状态栏?

3 个答案:

答案 0 :(得分:2)

ToolBarStatusBar的创建位于CMainFrame类内。如果您不需要它们,可以轻松删除它们,如下所示:

int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
    if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
    return -1;

    // *** creation of ToolBar starts, just remark/delete the whole block if you dont't want it
    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("Failed to create toolbar\n");
        return -1;      // fail to create
    }
    // *** creation of ToolBar  ends -------------------------------------------------------

    // *** creation of StatusBar starts, just remark/delete the whole block if you dont't want it
    if (!m_wndStatusBar.Create(this) ||
        !m_wndStatusBar.SetIndicators(indicators,
          sizeof(indicators)/sizeof(UINT)))
    {
        TRACE0("Failed to create status bar\n");
        return -1;      // fail to create
    }
    // *** creation of StatusBar ends -------------------------------------------------------

    // *** you have to remark/delete these lines too, if you removed the ToolBar above
    m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
    EnableDocking(CBRS_ALIGN_ANY);
    DockControlBar(&m_wndToolBar);
    // *** ToolBar extra ends -------------------------------------------------------

    return 0;

}

答案 1 :(得分:2)

m_pMainWnd->SetMenu(NULL);文件中调用m_pMainWnd->ShowWindow(SW_SHOW);之前

APPLICATION_NAME.cpp

答案 2 :(得分:1)

转到资源文件,双击它,找到工具栏,右键单击它并选择删除:)

enter image description here