MFC多文档 如何去掉标题的后半部分
1个回答
展开全部
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CFrameWnd::PreCreateWindow(cs) )
return FALSE;
CRect Rect = NULL;
SystemParametersInfo(SPI_GETWORKAREA, 0, &Rect, 0);
cs.x = Rect.left;
cs.y = Rect.top;
cs.cx = Rect.Width();
cs.cy = Rect.Height();
cs.style &= ~(WS_THICKFRAME | FWS_ADDTOTITLE);
m_strTitle = _T("写频软件");
return TRUE;
}
{
if( !CFrameWnd::PreCreateWindow(cs) )
return FALSE;
CRect Rect = NULL;
SystemParametersInfo(SPI_GETWORKAREA, 0, &Rect, 0);
cs.x = Rect.left;
cs.y = Rect.top;
cs.cx = Rect.Width();
cs.cy = Rect.Height();
cs.style &= ~(WS_THICKFRAME | FWS_ADDTOTITLE);
m_strTitle = _T("写频软件");
return TRUE;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询