Delphi 中的平滑滚动
多年来我一直在浏览器(firefox/chrome)中使用平滑滚动插件。
它们给眼睛和导航带来精确的感觉。 没有逐行闪烁。
Delphi 编辑器中可以实现此功能吗? 或者在任何 VCL 控件 TMemo/TStringGrid/TTreeView 等中?
我知道在 TVirtualTreeView 中可以按像素滚动。
For years I have been using smooth-scrolling plugins in my browsers (firefox/chrome).
They give a precise feel both for the eye and for navigating.
No line by line flickering.
Is this functionality possible in the Delphi editor ?
Or for that matter in any of the VCL controls TMemo/TStringGrid/TTreeView etc ?
I know that in TVirtualTreeView it is possible to scroll by pixels.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RichView 包提供了一些您可能喜欢的选项,例如
TRichView
。此外,使用 XE2,您可以将项目设置为双缓冲ExampleItem.DoubleBuffered := True;
这有助于顺利进行。The RichView package offers some options that you may like such as
TRichView
. Also, with XE2 you can set items to be Double BufferedExampleItem.DoubleBuffered := True;
which helps smooth things out.