一起滚动多个 Tkinter 列表框
我有多个 Tkinter 列表框,我使用单个滚动条将它们一起滚动,但我还希望它们一起滚动以在任何列表框上进行鼠标滚轮活动。
如何做到这一点?
我当前的代码基于此处讨论的最后一个模式: http://effbot.org/tkinterbook/listbox.htm 仅使用滚动条时效果很好,但使用鼠标滚轮时列表框会独立滚动。
I have multiple Tkinter listboxes that I have scrolling together using a single scrollbar, but I'd ALSO like them to scroll together for mousewheel activity over any of the listboxes.
How to do this?
My current code is based on the last pattern discussed here: http://effbot.org/tkinterbook/listbox.htm It works fine when using only the scrollbar, but the listboxes scroll independently when the mousewheel is used.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我知道这已经很老了,但我认为解决方案比这里提供的解决方案更简单。假设您始终希望列表框保持一致,那么上述两个答案甚至都不是完整的解决方案 - 通过箭头键更改选择将滚动一个列表框,但不会滚动另一个列表框。
因此,在查看答案时,我问 - 为什么他们不挂钩 yscrollcommand 回调,而不是直接将其发送到滚动条?所以,我就是这么做的:
I know this is pretty old, but I think the solution is a bit more simple than those proferred here. Assuming that you always want the listboxes to be in agreement, then the above two answers aren't even complete solutions - changing selection by means of the arrow keys will scroll one listbox but not the other.
So, looking at the answers, I asked - why aren't they hooking the yscrollcommand callback instead of just sending it straight to the scrollbar? So, I did just that:
解决问题的方式与将两个小部件连接到单个滚动条的方式几乎相同:为鼠标滚轮创建自定义绑定,并使这些绑定影响两个列表框,而不仅仅是一个。
唯一真正的技巧是知道您会根据平台获得不同的鼠标滚轮事件:Windows 和 Mac 获得
事件,linux 获得
code> 和
事件。这是一个在我的 Mac 上使用 python 2.5 进行测试的示例:
Solve the problem pretty much the same way as you did to connect the two widgets to a single scrollbar: create custom bindings for the mousewheel and have those bindings affect both listboxes rather than just one.
The only real trick is knowing that you get different events for the mousewheel depending on the platform: windows and the Mac gets
<MouseWheel>
events, linux gets<Button-4>
and<Button-5>
events.Here's an example, tested on my Mac with python 2.5:
这是我当前的解决方案,编码为独立函数(是的,它应该是一个对象)。
特征/要求:
(至少 1)。
长度相同。
调整以匹配内容。
鼠标滚轮或
滚动条。
Linux,但仅在以下平台上进行了测试
Linux。
代码:
欢迎提出改进建议!
Here's my current solution, coded as a stand-alone function (yes, it should be an object).
Features/requirements:
(minimum 1).
same length.
adjusted to match the content.
either the mouse wheel or the
scrollbar.
Linux, but has been tested only on
Linux.
Code:
Suggestions for improvements are welcome!
我做了一个非常简单的程序解决方案。在查看教程点站点以获取有关如何使用一个小部件的滚动条的信息后(https:/ /www.tutorialspoint.com/python/tk_scrollbar.htm),我将其调整为同时滚动多个文本框(您可以更改代码,以便它使用列表框)。当您使用滚动条时,此解决方案将更新所有三个文本框。
I've made a very simple procedural solution. After looking on the tutorials point site for information on how to use the scrollbar for one widget (https://www.tutorialspoint.com/python/tk_scrollbar.htm), I adapted it to scroll through multiple text boxes at the same time (you can change the code so it uses list boxes). This solution will update all three textboxes when you use the scroll bar.
下面的清单是 John K. Ousterhout 的书
Tcl and Tk Toolkit - 2009
,第18.9.2 Synchronized Scrolling of Multiple Widgets
章节中 Tcl 代码示例的 Python 实现:在 Linux 和 Windows 上进行了测试。
The listing below is a Python implementation of the Tcl code example from the John K. Ousterhout's book
Tcl and Tk Toolkit - 2009
, chapter18.9.2 Synchronized Scrolling of Multiple Widgets
:Tested on Linux and on Windows.
不久前查看了这个问题并且不理解答案后,我现在已经使用鼠标滚轮制作并理解了我自己对这个问题的实现,如下所示:
滚动的绑定参数是操作系统之间有所不同。在 Windows 上,它是
''
,在 Mac 上,它是<'Button-4'>
,在 Linux 上,它是<'按钮-5'>
。因此,首先您可以像这样找到用户的操作系统:声明和绑定列表框小部件:
如果没有将
exportselection = False
参数放入小部件声明中,则 Tkinter 在任何时候都只允许一个列表框进行选择。即使列表框可以一起滚动,用户仍然可以通过滚动鼠标滚轮以外的方式来扰乱滚动同步。<'B1-Leave'>
允许用户通过单击鼠标并将其拖出小部件来滚动列表框。<'ButtonRelease-1'>
允许用户通过单击并拖动来更改列表框的辅助选择<'Key'>
允许用户滚动带有箭头键的列表框这些事件必须停止以保持滚动同步,这必须通过事件击中
break
语句来完成。即使事件被传递给另一个函数,如果它没有遇到break
,它仍然会继续。要中断绑定语句中的事件,'break'
必须是字符串。例如:对所有列表框重复此操作,并创建要同步滚动的列表框的列表:
然后,要滚动列表框,您可以针对您知道的任何操作系统执行此操作在任何操作系统上运行或适应任何操作系统,如下所示(操作系统之间的滚动速度不同,需要不同的数学):
此外,要将所有列表框的选择合并到用户的一行中,您可以使用一个函数像这样:
After looking at this question a while ago and not understanding the answers, I have now made and understood my own implementation of this problem with the mouse wheel, as below:
The bind argument for scrolling is different between operating systems. On Windows it is
'<MouseWheel>'
, on Mac it is<'Button-4'>
, and on Linux it is<'Button-5'>
. So, first you can find the operating system of the user like this:Declaring and binding listbox widgets:
Tkinter will only allow one listbox to have a selection at any time if the
exportselection = False
argument is not put into the widget declaration. Even if the listboxes can scroll together, there are still ways the user can mess up the scroll synchronization by scrolling through means other than the mouse wheel.<'B1-Leave'>
allows the user to scroll listboxes by clicking the mouse and dragging out of the widget.<'ButtonRelease-1'>
allows the user to change the secondary selection of the listbox by clicking and dragging<'Key'>
allows the user to scroll listboxes with the arrow keysThese events have to be stopped to maintain scroll synchronization, which has to be done by the event hitting a
break
statement. Even if the event is passed to another function, if it doesn't hit abreak
, it will still proceed. To break off an event in a bind statement,'break'
must be a string. For example:Repeat this for all listboxes, and create a list of the listboxes you want to scroll synchronously:
Then, to scroll your listboxes, you can either do so for whatever operating system you know you will be running on, or accomodating for any operating system, like this (the scroll speeds are different between operating systems, necessitating the different math):
Also, to combine the selection of all the listboxes into one row for the user, you could use a function like this: