我定义了CCreateContext context;想要给其成员赋值,我做了
context.m_pNewViewClass = RUNTIME_CLASS(CMyView);
context.m_pCurrentDoc = GetActiveDocument();
然后调用m_wndSplitter.CreateStatic(this,1,2);
m_wndSplitter.CreateView(0,0,RUNTIME_CLASS(CMyView),
      CSize(130, 150),&context);
……
结果运行出错,不能产生分割窗口,
请问是不是因为context的其他成员没有赋值,怎么赋值?