Foxpro 的垂直滚动选框
任何人都可以向我指出一些代码/给我关于如何为 VFP 8 或 9 创建平滑滚动垂直选取框的想法吗?
任何帮助表示赞赏。
Could anyone could point me to some code/give me ideas on how to create a smooth scrolling vertical marquee for VFP 8 or 9?
Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 可滚动容器
You can use Scrollable Container
不幸的是,我的工作性质让我没有时间闲逛图形,但如果我这样做,我会考虑将 GDI+ 与 VFP 结合使用。 这是一篇文章,可帮助您入门
Unfortunately the nature of my work leaves me no time for fooling around with graphics, however if I did I would look into using GDI+ with VFP. Here is an article to get you started
这是一个可以滚动消息的快速程序。 将以下内容放入 prg 文件中并运行它。
我将创建一个 containerScrollArea 类,其中封装了计时器、标签和滚动代码。 为其提供 GetNextMessage 方法,您可以重写该方法来检索消息。
Here's a quick program that will scroll messages. Put the following in a prg file and run it.
I'd make a containerScrollArea a class that encapsulates the timer, labels, and scrolling code. Give it GetNextMessage method that you can override to retrieve the messages.