在CMainFrame的OnCreate()中添加如下代码:
long Style;
//去掉标题栏及其他样式
SetWindowLong(this->m_hWnd,GWL_STYLE,0);
//去掉边框及其他样式
SetWindowLong(this->m_hWnd,GWL_EXSTYLE,0);
//取消菜单栏
this->SetMenu(NULL);
在CView中的OnCreate()中也去掉边框
//去掉边框风格及其他样式
long Style;
SetWindowLong(this->m_hWnd,GWL_EXSTYLE,0);
方法二:使用CWnd成员函数ModifyStyle实现
// 隐藏TitleBar
ModifyStyle(WS_CAPTION, 0, SWP_FRAMECHANGED);
// 显示TitleBar
ModifyStyle(0, WS_CAPTION, SWP_FRAMECHANGED);
以上代码,放置在CMainFrame的OnCreate函数的尾部即可~~
https://blog.csdn.net/zhaobangyu/article/details/43793787
本文参考链接:https://www.cnblogs.com/xihong2014/p/13173914.html