Bootstrap

MFC中获取各种类指针

 

1、获取应用程序指针
  CMyApp* pApp=(CMyApp*)AfxGetApp();

2、获取主框架指针
  CWinApp 中的公有成员变量 m_pMainWnd 就是主框架的指针
  CMainFrame* pMainFrame = (CMainFrame*)(AfxGetApp()->m_pMainWnd);
  或者
  CMainFrame* pMainFrame = (CMainFrame*)AfxGetMainWnd();

3、获取菜单指针
  CMenu* pMenu = AfxGetMainWnd()->GetMenu();

4、获取工具栏、状态栏指针
  主框架中可以直接使用m_wndToolBar、m_wndStatusBar
  其他:
  CToolBar* pToolBar = (CToolBar*)AfxGetMainWnd()->GetDescendantWindow(AFX_IDW_TOOLBAR);
  CStatusBar* pStatusBar = (CStatusBar*)AfxGetMainWnd()->GetDescendantWindow(AFX_IDW_STATUS_BAR);

5、获取控件指针
  先用 GetDlgItem() 再转换,如:
  CButton* pButton = (CButton*)GetDlgItem(IDC_MYBUTTON);

6、获取文档、视图指针

;