我可以使用 CRichEditCtrl 显示同一文件的多个视图吗?

发布于 2024-11-28 13:26:28 字数 81 浏览 1 评论 0原文

我必须在具有多个选项卡的对话框窗口中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜妞爱困 2024-12-05 13:26:28

如果您使用 CPropertySheetCPropertyPage 来支持多选项卡,则可以覆盖 CPropertyPage::OnSetActiveCPropertyPage::OnKillActive< /代码>。在 OnKillActive 中设置当前文本,并为其他即将处于活动状态的选项卡(在 OnSetActive 中)设置相同的文本。

If you are using CPropertySheet and CPropertyPage for multiple-tab support, you may override CPropertyPage::OnSetActive and CPropertyPage::OnKillActive. Set the current text in OnKillActive and set the same text for other tab that is going to be active (in OnSetActive).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文