CCreateContext ,最后的参数不会弄,请问该怎么解决?

想用 CSplitterWnd m_wndSplitter;
m_wndSplitter.Create(this,
2, 2, // TODO: adjust the number of rows, columns
CSize(10, 10), // TODO: adjust the minimum pane size
pContext)
这个函数 最后的参数不会弄!!

胡子哥哥
浏览 139回答 1
1回答

慕码人8056858

CCreateContext是用来创建View类的,一般不需要自己写。MFC会帮你准备这个参数。CSplitterWnd m_wndSplitter一般是CFrameWnd派生类的成员,m_wndSplitter.Create一般是在CFrameWnd派生类的OnCreateClient里边调用,你只需要重载OnCreateClient,MFC调用你写的OnCreateClient的时候,会把CCreateContext参数传给你,你直接用在m_wndSplitter.Create上就可以。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Android