[질문] 다이얼로그 기반 CFrameWnd 이용한 화면분할...
모은
현재 진행되는 프로젝트에서 진도가 안나가서 막힌 상태네요..
제목에서 처럼 다이얼로그 기반에서 cframewnd를 이용하여 위 아래 각각 cformview를 올려놓은 상태입니다.
하지만 동그라미 부분을 보시면
프레임(경계선)이 보여져서 전체적인 화면 구성에 어려움이 있습니다.
구현은 현재
cformmain (cformview)에서
위아래 화면 뷰를 올리는데..
이는 다이얼로그 위에 cformmain view를 올리고.. 여기서 다시 상단과 하단으로 나뉩니다.
cformmain view에서 다음과 같이 구현되었습니다.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
ccreatecontext context;
crect rect;
rect.top = 0;
rect.left = 0;
rect.bottom = 76;
rect.right = 800;
// top view
if(m_myframetop.m_hwnd) // m_myframetop는 cframewnd
m_myframetop.destroywindow();
m_myframetop.create(null, null, ws_child | ws_visible, rect, this);
context.m_pcurrentdoc = null;
context.m_pcurrentframe = null;
context.m_pnewviewclass = runtime_class(cmainmenutop);
m_myframetop.createview(&context);
//m_myframetop.recalclayout();
m_myframetop.showwindow(sw_show);
//m_myframetop.initialupdateframe(null, true);
//m_myframetop.modifystyle(ws_ex_staticedge | ws_ex_windowedge | ws_ex_clientedge,0,0);
//m_myframetop.modifystyleex(ws_ex_staticedge | ws_ex_windowedge | ws_ex_clientedge,0,swp_nozorder);
//m_myframetop.getparent()-modifystyle(ws_border,0,0);
// center view
rect.top = 76;
rect.left = 0;
rect.bottom = 327 + 76;
rect.right = 800;
if(m_myframecenter.m_hwnd) // m_myframecenter는 cframewnd
m_myframecenter.destroywindow();
m_myframecenter.create(null, null, ws_child | ws_visible , rect, this);
context.m_pcurrentdoc = null;
context.m_pcurrentframe = null;
context.m_pnewviewclass = runtime_class(cmainmenucenter);
m_myframecenter.createview(&context);
//m_myframecenter.recalclayout();
m_myframecenter.showwindow(sw_show);
//m_myframecenter.initialupdateframe(null, true);
//m_myframecenter.modifystyle(ws_ex_staticedge | ws_ex_windowedge | ws_ex_clientedge,0,0);
//m_myframecenter.modifystyleex(ws_ex_staticedge | ws_ex_windowedge | ws_ex_clientedge,0,swp_nozorder);
//m_myframecenter.getparent()-modifystyle(ws_border,0,0);
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
빨간색 부분에 중점적으로 수정을 해왔으나 여전히 문제가 되네요..
여기저기 알아보면..
modifystyle() 대한 수정도 있고해서 실행을 해봤으나..
여전히 변화가 없는 상태입니다.
제가 의도하는 것은 저 경계선이 없으며 위아래가 자연스래 이어져 가길 원합니다..
사이트 회원분께.. 참고나 지적 부탁드립니다.