使用 TK GUI 滚动滚动条

发布于 2024-12-06 01:24:47 字数 423 浏览 2 评论 0原文

如何使用代码滚动 TkScrollbar

.scroll.autoscroll 均无法识别。

 test = TkScrollbar.new(root).pack('side'=>'right', 'fill'=>'y')
 test.scroll(1)
 test.autoscroll

编辑:忘记了文档的链接: http:// ruby-doc.org/stdlib/libdoc/tk/rdoc/classes/Tk/Scrollbar.html

How can a TkScrollbar be scrolled with code?

Neither .scroll nor .autoscroll are recognised.

 test = TkScrollbar.new(root).pack('side'=>'right', 'fill'=>'y')
 test.scroll(1)
 test.autoscroll

Edit: Forgot the link to the doc: http://ruby-doc.org/stdlib/libdoc/tk/rdoc/classes/Tk/Scrollbar.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

野生奥特曼 2024-12-13 01:24:47

我对 ruby​​ 和 tk 没有经验,但对于其他 tk 绑定(准确地说是 python 和 tcl),当您想以编程方式滚动某些内容时,您不会移动滚动条,而是直接滚动您想要滚动的任何内容。滚动条将自行更新以反映更改。

您可以使用 xviewyview 方法滚动对象。我假设(但不知道事实)这些是在红宝石绑定中公开的。

I have no experience with ruby and tk, but with other tk bindings (python and tcl, to be precise), when you want to scroll something programmatically you don't move the scrollbar, you directly scroll whatever it is you want scrolled. The scrollbar will update itself to reflect the changes.

You scroll an object by using its xview and yview methods. I assume (but don't know for a fact) those are exposed in the ruby bindings.

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