MFC 更改默认窗口大小的方法

重载 

BOOL PreCreateWindow(CREATESTRUCT& cs) 函数

 BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)

{

    if( !CFrameWnd::PreCreateWindow(cs))

        return FALSE;

    // TODO: Modify the Window class or styles here bymodifying

    //  the CREATESTRUCTcs

 

    cs.dwExStyle&= ~WS_EX_CLIENTEDGE;

    cs.lpszClass = AfxRegisterWndClass(0);

    cs.style |= WS_CLIPCHILDREN|WS_CLIPSIBLINGS;

    cs.cx = 1000;//窗口宽度

    cs.cy = 800;//窗口高度

    return TRUE;

}


你可能感兴趣的:(MFC 更改默认窗口大小的方法)