Мне нужна помощь с переключением между CFormViews
в моем проекте MFC SDI C ++. Я давно копаюсь и не могу понять, почему мой код не работает. В процессе поиска в Интернете (включая этот сайт) я наткнулся на несколько учебных пособий по переключению форм, добавив две функции в MainFrm.cpp (a CMainFrame
объект, который наследуется от CFrameWnd
). Одному из них передается идентификатор формы, в которую я хочу переключиться, затем он получает указатель на активное представление и выполняет оттуда какой-то другой код. Тем не мение, GetActiveView()
всегда возвращает NULL
значение указателя Я знаю, что есть активное представление, потому что я нажимаю кнопку в активной форме. Мой код ниже. Это просто функция, о которой я говорю. Он находится в MainFrm.cpp (файл окна по умолчанию, созданный при запуске нового проекта MFC).
До сих пор я пробовал код из базы знаний Microsoft, который рассказывает о том, как получить текущий CDocument
или же CView
Я пытался сначала получить активный кадр, затем вызвал GetActiveView
от CFrameWnd
и я попробовал код ниже. Все безрезультатно. Я явно недостаточно знаю о MFC, чтобы что-то выяснить. Если вам нужна дополнительная информация от меня, пожалуйста, спросите. Я, наверное, не упомянул все, что я должен был иметь. Я решил сделать MFC для школьного проекта и не могу приступить к созданию UML или написанию какого-либо другого кода, пока не узнаю, что смогу заставить эти формы работать.
void CMainFrame::SelectView(UINT ViewID)
{
// If the view the user selected is already displaying, do nothing
if (ViewID == m_CurrentView)
return;
// Get a pointer to the current view
CView* pCurrentView = GetActiveView();
// We are about to change the view, so we need a pointer to the runtime class
CRuntimeClass* pNewView = NULL; // Added = NULL because it wouldn't allow program to be run without initialization of pNewView
// We will process a form
// First, let's change the identifier of the current view to our integer
::SetWindowLong(pCurrentView->m_hWnd, GWL_ID, m_CurrentView);
// Now we will identify what form the user selected
switch (ViewID)
{
case IDD_CHOOSE_ITEM:
pNewView = RUNTIME_CLASS(CChooseItemView);
break;
case IDD_ITEM_INFORMATION:
pNewView = RUNTIME_CLASS(CItemInformationView);
break;
}
// We will deal with the frame
CCreateContext crtContext;
// We have a new view now. So we initialize the context
crtContext.m_pNewViewClass = pNewView;
// No need to change the document. We keep the current document
crtContext.m_pCurrentDoc = GetActiveDocument();
CView* pNewViewer = STATIC_DOWNCAST(CView, CreateView(&crtContext));
// Now we can create a new view and get rid of the previous one
if (pNewViewer != NULL)
{
pNewViewer->ShowWindow(SW_SHOW);
pNewViewer->OnInitialUpdate();
SetActiveView(pNewViewer);
RecalcLayout();
m_CurrentView = ViewID;
pCurrentView->DestroyWindow();
}
}
Чтобы получить не активный View, но связанный CView из CDocument, вы можете реализовать эту схему в Doc
// ----- GetCChooseItemView() -- -Search the first associated CView in INACTIVE Views too ! ------
CView* CMyDoc::GetCChooseItemView(void)
{
CRuntimeClass* prt = RUNTIME_CLASS(CChooseItemView);
CView* pView = NULL;
// Continue search in inactive View by T(o)m
POSITION pos = GetFirstViewPosition();
while (pos != NULL)
{
pView = GetNextView(pos);
if (pView->GetRuntimeClass() == prt)
{
if (pView->IsKindOf(RUNTIME_CLASS(CChooseItemView)))
break;
}
pView = NULL; // not valid vie
}
return static_cast<CChooseItemView*>(pView);
}
затем добавьте в свой код SelectView
void CMainFrame::SelectView(UINT ViewID)
{
: (code as before)
:
// Get a pointer to the current view
CView* pCurrentView = GetActiveView();
// Get a pointer to the current view
CView* pCurrentView = GetActiveView();
if (pCurrentView == NULL
{
CMyDoc* pDoc = static_cast<CMyDoc*>(GetActiveDocument());
if (pDoc)
{
pCurrentView = pDoc->GetChhoseItemView();
if (pCurrentView == NULL)
mpCurrentView = pDoc->GetCItemInformationView() // let as exercise for the OP
if (pCurrentView == NULL
{
DebugBreak(); // Errror No View found..
}
}
: (code as befeore)
:
}
Следующий код работает для меня:
virtual CView* SwitchToView(CView* pNewView);
и в cpp:
CView* CMyDoc::SwitchToView(CView* pNewView)
{
CMDIFrameWndEx* pMainWnd = (CMDIFrameWndEx*)AfxGetMainWnd();
// Get the active MDI child window
CMDIChildWndEx* pChild = (CMDIChildWndEx*)pMainWnd->MDIGetActive();
// Get the active view attached to the active MDI child window.
CView* pOldActiveView = pChild->GetActiveView();
// Exchange control ID of old view
// note: if you have more than two view you have to remember which view you switched to
// so you can set it's old control ID correctly
if(pNewView == m_pMyView)
pOldActiveView->SetDlgCtrlID(CTRLID_MYVIEW2);
if(pNewView == m_pMyView2)
pOldActiveView->SetDlgCtrlID(CTRLID_MYVIEW);
// Exchange control ID of new new
// note: the control ID of the active view must always be AFX_IDW_PANE_FIRST
pNewView->SetDlgCtrlID(AFX_IDW_PANE_FIRST);
// Set flag so that document will not be deleted when view is dettached.
BOOL bAutoDelete = m_bAutoDelete;
m_bAutoDelete = FALSE;
// Dettach existing view
RemoveView(pOldActiveView);
// restore flag
m_bAutoDelete = bAutoDelete;
// Show the newly active view and hide the inactive view.
pNewView->ShowWindow(SW_SHOW);
pOldActiveView->ShowWindow(SW_HIDE);
// Attach new view
AddView(pNewView);
pChild->RecalcLayout();
pNewView->UpdateWindow();
pChild->SetActiveView(pNewView);
return pOldActiveView;
}
Я надеюсь, что это поможет вам.