在 MFC CRichEditView 中查找文本自动滚动
我有一个带有 CRichEditView 的应用程序,我想在其中查找文本。
通过使用 ID_EDIT_FIND 创建菜单项“查找”,视图将打开查找窗口并通过突出显示查找文本。但是...视图不会滚动,因此如果在可见内容下方 100 行处发现文本,它就会停留在该位置。
关于如何使控件自动滚动以便找到的项目始终可见的想法?
I have an application with a CRichEditView, and I'd like to find text in it.
By creating a menu item "Find" with ID_EDIT_FIND, the view opens the find window and text is found by highlighting. BUT... the view is not scrolled, so if a text is found 100 lines below visible, that's where it stays.
Ideas on how to make the control autoscroll so that found items are always visible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,回答:
ctrl.SetOptions(ECOOP_OR, ECO_AUTOVSCROLL);
这就成功了:)
Ok, answer:
ctrl.SetOptions(ECOOP_OR, ECO_AUTOVSCROLL);
That did the trick :)