使用 TK GUI 滚动滚动条
如何使用代码滚动 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对 ruby 和 tk 没有经验,但对于其他 tk 绑定(准确地说是 python 和 tcl),当您想以编程方式滚动某些内容时,您不会移动滚动条,而是直接滚动您想要滚动的任何内容。滚动条将自行更新以反映更改。
您可以使用
xview
和yview
方法滚动对象。我假设(但不知道事实)这些是在红宝石绑定中公开的。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
andyview
methods. I assume (but don't know for a fact) those are exposed in the ruby bindings.