• 在mfc中,设置一个隐藏菜单栏,工具栏,状态栏,最大化、最小化、关闭按钮的窗体 荣


    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))
    */
     
    if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
      
    | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC))
     {
      TRACE0(
    "Failed to create toolbar\n");
      
    return -1;      // fail to create
     }

     
    // 去掉状态栏
     /*
     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
     }
    */

     
    // TODO: Delete these three lines if you don't want the toolbar to
     
    //  be dockable

     m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
     EnableDocking(CBRS_ALIGN_ANY);
     DockControlBar(
    &m_wndToolBar);

     
    // 设置标题--标题显示为:无标题-天志的导航
     
    //this->SetTitle("天志的导航");


     
    // 隐藏最大化,最小化,关闭按钮
     ModifyStyle(WS_SYSMENU, 0);


    // 隐藏标题栏
     ModifyStyle(WS_CAPTION, 0);

     
    // 去掉菜单栏
     SetMenu(NULL);

     
    // 全屏显示
     RECT rc;
     ::GetWindowRect(::GetDesktopWindow(), 
    &rc);  
     
    this->MoveWindow(&rc);

     
    return 0;
    }


    去掉标题栏:
    在OnCreate函数中,添加如下代码:
    ModifyStyle(WS_CAPTION, 0, SWP_FRAMECHANGED);

    单文档,多文档中都是如此
  • 相关阅读:
    网络模块axios的简单应用
    UWP App国际化的两种实现
    C# 显示函数调用方的详细信息
    UWP SVG 转 Glyph
    UWP 区分设备类型
    Flutter 星标已正式超过React Native
    查看Github星标排行榜
    博客园部分非公开api
    模块化(零):综述
    模块化一:提取模块
  • 原文地址:https://www.cnblogs.com/admin11/p/1043035.html
Copyright © 2020-2023  润新知