vc 獲取當前應用程式例項控制代碼的幾種方法:
1.afxgetinstancehandle():用這個函式可以直接獲得應用程式的例項控制代碼
mfc中獲取各種類指標
3、獲取選單指標
cmenu* pmenu = afxgetmainwnd()->getmenu();
4、獲取工具欄、狀態列指標
主框架中可以直接使用m_wnd*******、m_wndstatusbar
其他:c******** p******* = (c********)afxgetmainwnd()->getdescendantwindow(afx_idw_*******);
cstatusbar* pstatusbar = (cstatusbar*)afxgetmainwnd()->getdescendantwindow(afx_idw_status_bar);
5、獲取控制項指標
先用 getdlgitem() 再轉換,如:
cbutton* pbutton = (cbutton*)getdlgitem(idc_mybutton);
6、獲取文件、檢視指標
sdi:7、文件、檢視cmainframe* pmainframe = (cmainframe*)afxgetmainwnd();
cyourdoc* pdoc = (cyourdoc*)pmainframe->getactivedocument();
cyourview* pview = (cyourview*)pmainframe->getactiveview();
mdi:
cmainframe* pmainframe = (cmainframe*)afxgetmainwnd();
cchildframe* pchildframe = (cchildframe*)pmainframe->getactiveframe();
cyourdoc* pdoc = (cyourdoc*)pchildframe->getactivedocument();
cyourview* pview = (cyourview*)pchildframe->getactiveview();
從檢視獲取文件指標:8、文件模版、文件cyourdoc* pdoc = getdocument();
從文件獲取檢視指標:
利用成員函式 getfirstviewposition() 和 getnextview() 遍歷
virtual position getfirstviewposition() const;
virtual cview* getnextview(position& rposition) const;
sdi:
cyourview* pview;
position pos = getfirstviewposition();
pview = getnextview(pos);
mdi:
定義函式
cview* cyourdoc::getview(cruntimeclass* pclass)
if(!pview->iskindof(pclass))
return pview;
}使用如下:
cyourview* pview=(cyourview*)getview(runtime_class(cyourview));
從文件獲取文件模版指標:9、獲取分割檢視中各個檢視的指標cdoctemplate* getdoctemplate() const;
從文件模版獲取文件指標:
viaual position getfirstdocposition( ) const = 0;
visual cdocument* getnextdoc(position & rpos) const = 0;
主框架中定義:csplitterwnd m_wndsplitter;10、通過滑鼠獲得子視窗指標定義兩個view類:cview1、cview2
框架類中過載:
bool cmainframe::oncreateclient(lpcreatestruct, ccreatecontext* pcontext)
獲取分割檢視指標
cview1* pview1 = (cview1*)m_wndsplitter.getpane(0,0);
cview2* pview2 = (cview2*)m_wndsplitter.getpane(1,0);
cwnd* childwindowfrompoint(point point) const;cwnd* childwindowfrompoint(point point,uint nflags) const;
用於確定包含指定點的子視窗
如果指定點在客戶區之外,函式返回null;
如果指定點在客戶區內,但是不屬於任何乙個子視窗,函式返回該cwnd的指標;
如果有多個子視窗包含指定點,則返回第乙個子視窗的指標。
還要注意的是,該函式返回的是乙個偽視窗指標,不能將它儲存起來供以後使用。
對於第二個引數nflags有幾個含義:
cwp_all file://不忽略任何子視窗
cwp_skipnivsible file://忽略不可見子視窗
cwp_skipdisabled file://忽略禁止的子視窗
cwp_skipransparent file://忽略透明子視窗
MFC中獲得各個類的控制代碼的總結
1 在view中獲得doc指標 cyousdidoc pdoc getdocument 乙個視只能有乙個文件。3 在view中獲得mainframe指標 5 獲得當前文件指標 cdocument pcurrentdoc cframewnd m pmainwnd getactivedocument 6...
MFC中獲得各個類的控制代碼的總結
1 在view中獲得doc指標 cyousdidoc pdoc getdocument 乙個視只能有乙個文件。5 獲得當前文件指標 cdocument pcurrentdoc cframewnd m pmainwnd getactivedocument 6 獲得狀態列與工具欄指標 cstatusba...
MFC中的控制代碼
1.引出控制代碼 cdc問題 1.cdc dc dc.lineto point 無法執行 2.cdc dc getdc dc lineto point 就可以執行了 mfc中有大量的控制代碼包裝類。所謂控制代碼包裝類,指的是這些類是封裝了系統物件的控制代碼,並提供了一組成員函式作為訪問系統物件的介面...