我在静态切分视图时编译不过去:
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext) 
{
m_wndSplitter.CreateStatic(this,1,2);
m_wndSplitter.CreateView(0,0,RUNTIME_CLASS(CTestSplitterTestView),CSize(100,100),pContext); 
    //这里报错error C2653: CTestSplitterTestView: is not a class or namespace name

return CFrameWnd::OnCreateClient(lpcs, pContext);
}
=====================
可是我的CTestSplitterTestView类明明有,以为时头文件没有包含,等包含进去了,报更多错!晕ing