我可以使用 CRichEditCtrl 显示同一文件的多个视图吗?
我必须在具有多个选项卡的对话框窗口中使用 CRichEditCtrl 控件,这些选项卡可能会显示相同的文件。
我如何同步其中的编辑?
I have to CRichEditCtrl controls in a dialog window with multiple tabs which might display the same file.
How can i synchronize the editing in them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
CPropertySheet
和CPropertyPage
来支持多选项卡,则可以覆盖CPropertyPage::OnSetActive
和CPropertyPage::OnKillActive< /代码>。在
OnKillActive
中设置当前文本,并为其他即将处于活动状态的选项卡(在OnSetActive
中)设置相同的文本。If you are using
CPropertySheet
andCPropertyPage
for multiple-tab support, you may overrideCPropertyPage::OnSetActive
andCPropertyPage::OnKillActive
. Set the current text inOnKillActive
and set the same text for other tab that is going to be active (inOnSetActive
).