拆分已经拆分的窗格 (MFC)
在我的 MFC 程序中,我使用拆分器创建两个窗格。 我现在想将其中一个窗格再次分成两半并放入另一个视图,有人可以告诉我如何做到这一点或为我指出一些代码的方向吗?
我更喜欢自己编写代码,因此我对自定义派生类不感兴趣,除非它们非常基本。
谢谢!
In my MFC program I am using a splitter to create two panes. I now want to split one of these panes in half again and put in another view, can someone talk me through how to do it or point me in the direction of some code?
I would prefer to code it myself so I am not interested in custom derived classes unless they are extremely basic.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 CMainFrame::OnCreateClient 中
In
CMainFrame::OnCreateClient
我不是 MFC 专家,但是您不能在使用第一个拆分器创建的其中一个窗格中放置一个拆分器吗? 这就是我们在 winform 中的做法......
I am not an expert in MFC, but can't you just put a splitter in one of the panes you made with the first splitter ? that how we do in winform....