3月 262010
 

 
 
转自:http://hi.baidu.com.sixxs.org/eagle_shuai/blog/item/325c3abfb763800619d81f90.html
chilli 的 MFC指针的获取

1、获取应用程序指针
CMyApp* pApp=(CMyApp*)AfxGetApp();
2、获取主框架指针
CWinApp 中的公有成员变量 m_pMainWnd 就是主框架的指针
CMainFrame* pMainFrame = (CMainFrame*)(AfxGetApp()->m_pMainWnd);
或者
CMainFrame* pMainFrame = (CMainFrame*)AfxGetMainWnd();
Continue reading »
 Posted by at 上午3:01  Tagged with: