15,980
社区成员




BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
cs.x = 200;
cs.y = 200;
if( !CMDIChildWnd::PreCreateWindow(cs) )
return FALSE;
return TRUE;
}