MFC中类指针获取(佳佳)
Posted VIPWTL
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MFC中类指针获取(佳佳)相关的知识,希望对你有一定的参考价值。
定义:
CView* CYourDoc::GetView(CRuntimeClass* pClass)
{
CView* pView = NULL;
POSITION pos=GetFirstViewPosition();
while(pos!=NULL)
{
pView=GetNextView(pos);
if( pView->IsKindOf(pClass))
{
return pView;
}
}
return NULL;
}
使用:
CYourView* pView=(CYourView*)GetView(RUNTIME_CLASS(CYourView));
注:GetView要用doc的指针
例:
自定义类1(FormView1)中使用自定义类2(FormView2)指针,
CMainFrame* pMainFrame = (CMainFrame*)AfxGetMainWnd();
CYourDoc* pDoc = (CYourDoc*)pMainFrame->GetActiveDocument();
FormView2* pView=(FormView2*)pDoc->GetView(RUNTIME_CLASS(FormView2));
以上是关于MFC中类指针获取(佳佳)的主要内容,如果未能解决你的问题,请参考以下文章