F
flaviu_
Guest
Is there any chance to remove the CMainFame sunken ?
I have tried:
BOOL CMainFrame:reCreateWindow(CREATESTRUCT& cs)
{
if(! CMDIFrameWndEx:reCreateWindow(cs))
return FALSE;
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
cs.dwExStyle &= ~WS_EX_CLIENTEDGE;
return TRUE;
}
as you see, is not working. Taken from here: removing sunken (depressed) style in a formview
P.S. Issue tested on MDI app built in VS2017
Continue reading...
I have tried:
BOOL CMainFrame:reCreateWindow(CREATESTRUCT& cs)
{
if(! CMDIFrameWndEx:reCreateWindow(cs))
return FALSE;
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
cs.dwExStyle &= ~WS_EX_CLIENTEDGE;
return TRUE;
}
as you see, is not working. Taken from here: removing sunken (depressed) style in a formview
P.S. Issue tested on MDI app built in VS2017
Continue reading...