Python Tkinter canvas.xview 单位
Tkinter 画布滚动方法 xview(SCROLL,step,what)
和 yview(SCROLL,step,what)< 中的“单位”(
what
)如何< /代码>定义?它是以像素为单位定义的吗?是否可以更改它(例如,滚动速度较慢)?
要获得更好的上下文,请参阅此处的代码。
提前致谢。
How are the 'units' (what
) from the Tkinter canvas scrolling methods xview(SCROLL, step, what)
and yview(SCROLL, step, what)
defined? Is it defined in pixels? Is it possible to change it (for a slower scrolling for example)?
For a better context please see the code here.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于较慢的滚动,您可以使用 xscrollincrement & Canvas 的 yscrollincrement 选项:
for slower scrolling, you can play around with the xscrollincrement & yscrollincrement options of the Canvas:
查看 -xview/-yview 选项的文档,尤其是 yscrollincrement 选项。所以是的,您可以更改步长。
和
来自 canvas 的 Tk 手册页。
Have a look at the docs for the -xview/-yview options, especially at the the yscrollincrement option too. So yes, you can change the step size.
and
from the Tk manpage for canvas.