如何使用TScrollbar进行richedit;
如何使用 Tscrollbar 进行 Richedit。
我的目的是在不同的面板中分离滚动条。
是否可以?
How to use Tscrollbar to Richedit.
My purpose is to separate the scrollbar in a deferent panel.
is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试这样做:
它会在发生任何更改时将 Scrollbar1: TScrollBar 与 RichEdit 的滚动信息同步,并模拟来自滚动条的 WM_VSCROLL 消息。但是,它要求 RichEdit 有自己的垂直滚动条可见,因为如果滚动信息不可见,则滚动信息不会更新。
AFAIK 没有其他方法来获取滚动数据,只是因为 RichEdit 控件在不需要时不会创建它们(ScrollBars 属性中的 ssNone)。
You can try this:
It synchronizes Scrollbar1: TScrollBar with the scroll info of the RichEdit upon any change in it and simulates WM_VSCROLL messages coming from the scrollbar. However, it requires the RichEdit to have its own vertical scrollbar visible, because the scroll info is not updated, if it is not visible.
There is AFAIK no other way to get the scroll data, simply because the RichEdit control doesn't create them if not needed (ssNone in ScrollBars property).
我不确定我是否理解这个问题,但如果我答对了,你最好的选择可能是在滚动框中进行丰富的编辑,并使用 Windows 消息来同步两者。
安德里亚
I am not sure I understand the question, but if I get it right, your best bet is probably have the rich edit in a scroll box and use windows messages to synchronize the two.
Andrea