BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
if(!CFrameWndBase::PreCreateWindow(cs))
return FALSE;
cs.dwExStyle &= ~WS_EX_CLIENTEDGE;
return TRUE;
}
BOOL CMainView::PreCreateWindow(CREATESTRUCT& cs)
{
cs.style &= ~WS_BORDER;
return CFormView::PreCreateWindow(cs);
}
posted @ 2006-10-09 14:34 avisnet 阅读(45) 评论(0) 编辑

