按书上说,我在框架类中加入如下代码,按教科书上说是可以分成两个窗口,可实际不行,不知是否原因,请高手帮助,谢谢BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext) 
{
// TODO: Add your specialized code here and/or call the base class
BOOL ret = this->m_wndSplitter.CreateStatic(this, 1, 2);
ret |= this->m_wndSplitter.CreateView(0, 0, RUNTIME_CLASS(CGraphView),CSize(250,250), pContext);
ret |= this->m_wndSplitter.CreateView(0, 1, RUNTIME_CLASS(CTextView),CSize(250,250), pContext); return CFrameWnd::OnCreateClient(lpcs, pContext);
}编译时,系统总说2个类CGraphView,CTextView 没有定义,请问上面用到的2个类CGraphView,CTextView 应该在哪里定义啊?该怎样定义,请把代码详细写一下,我是新手。谢谢!!