在 tkinter 中滚动一个小部件与另一个小部件
Scrolling one widget with another in tkinter
有什么方法可以在 tkinter 中将一个小部件与另一个小部件一起滚动吗?
代码如下:
from tkinter import *
root = Tk()
def yview(*args):
text_widget_1.yview(*args)
text_widget_2.yview(*args)
scrollbar = Scrollbar(root , orient = VERTICAL , command = yview)
scrollbar.grid(row = 0 , column = 2 , sticky = N+S+E+W)
text_widget_1 = Text(root , width = 3 , height = 25 , yscrollcommand = scrollbar.set , font = "consolas 14")
text_widget_1.grid(row = 0 , column = 0)
text_widget_2 = Text(root , width = 35 , height = 25 , yscrollcommand = scrollbar.set , font = "consolas 14")
text_widget_2.grid(row = 0 , column = 1 , padx = 2)
for i in range(1,500):
text_widget_1.insert(END , f"{i}\n")
text_widget_2.insert(END , f"Line no: {i}\n")
mainloop()
在这里,当我移动滚动条时,两个文本小部件都滚动了,一切正常。
但是当我滚动 text_widget_1
时,text_widget_2
不滚动。
同样,当我滚动 text_widget_2
时,text_widget_1
不滚动。
我想做的是当我滚动一个文本小部件时,另一个文本小部件也应该同时滚动。
有什么方法可以在 tkinter 中实现这个吗?
如果有人能帮助我就太好了。
编辑:我试图参考这个问题(Python tkinter scrolling two TEXT widgets at the same time with arrow keys),但不幸的是,我无法理解该代码中的内容,所以它没有太大帮助。
默认情况下,文本小部件具有 <MouseWheel>
绑定集。我们可以覆盖或取消绑定该序列。首先,我们需要知道我们是要对所有文本小部件进行更改还是仅对特定的小部件进行更改。
如果你想更改所有文本小部件的 <MouseWheel>
绑定,那么通过使用 bind_class
方法和“文本”作为主要 classname
我们可以做到它。
# Change the binds of all text widgets to that callback function
text1.bind_class("Text", "<MouseWheel>", function)
但如果您只想更改一个文本小部件,您可以使用
# Change only for a specific Text widget.
text1.bind_class(text1, "<MouseWheel>", function)
所以如果您只有这两个文本小部件 (text_widget_1
, text_widget_2
)
那么你可以使用第一个选项。
def mousewheel(evt):
text_widget_1.yview_scroll(-1*(evt.delta), 'units') # For MacOS
text_widget_2.yview_scroll(-1*(evt.delta), 'units') # For MacOS
text_widget_1.yview_scroll(int(-1*(evt.delta/120)), 'units') # For windows
text_widget_2.yview_scroll(int(-1*(evt.delta/120)), 'units') # For windows
text_widget_1.bind_class("Text", '<MouseWheel>', mousewheel)
...
或者,如果您有更多文本小部件,但只想为 (text_widget_1
、text_widget_2
) 更改它,那么请单独绑定,参考第二个选项。
...
text_widget_1.bind_class(text_widget_1, '<MouseWheel>', mousewheel)
text_widget_2.bind_class(text_widget_2, '<MouseWheel>', mousewheel)
...
因为我不知道你使用的是哪个操作系统,所以我包括了 windows 和 macOS 的滚动设置,根据你的操作系统使用。
有什么方法可以在 tkinter 中将一个小部件与另一个小部件一起滚动吗?
代码如下:
from tkinter import *
root = Tk()
def yview(*args):
text_widget_1.yview(*args)
text_widget_2.yview(*args)
scrollbar = Scrollbar(root , orient = VERTICAL , command = yview)
scrollbar.grid(row = 0 , column = 2 , sticky = N+S+E+W)
text_widget_1 = Text(root , width = 3 , height = 25 , yscrollcommand = scrollbar.set , font = "consolas 14")
text_widget_1.grid(row = 0 , column = 0)
text_widget_2 = Text(root , width = 35 , height = 25 , yscrollcommand = scrollbar.set , font = "consolas 14")
text_widget_2.grid(row = 0 , column = 1 , padx = 2)
for i in range(1,500):
text_widget_1.insert(END , f"{i}\n")
text_widget_2.insert(END , f"Line no: {i}\n")
mainloop()
在这里,当我移动滚动条时,两个文本小部件都滚动了,一切正常。
但是当我滚动 text_widget_1
时,text_widget_2
不滚动。
同样,当我滚动 text_widget_2
时,text_widget_1
不滚动。
我想做的是当我滚动一个文本小部件时,另一个文本小部件也应该同时滚动。
有什么方法可以在 tkinter 中实现这个吗?
如果有人能帮助我就太好了。
编辑:我试图参考这个问题(Python tkinter scrolling two TEXT widgets at the same time with arrow keys),但不幸的是,我无法理解该代码中的内容,所以它没有太大帮助。
默认情况下,文本小部件具有 <MouseWheel>
绑定集。我们可以覆盖或取消绑定该序列。首先,我们需要知道我们是要对所有文本小部件进行更改还是仅对特定的小部件进行更改。
如果你想更改所有文本小部件的
<MouseWheel>
绑定,那么通过使用bind_class
方法和“文本”作为主要classname
我们可以做到它。# Change the binds of all text widgets to that callback function text1.bind_class("Text", "<MouseWheel>", function)
但如果您只想更改一个文本小部件,您可以使用
# Change only for a specific Text widget. text1.bind_class(text1, "<MouseWheel>", function)
所以如果您只有这两个文本小部件 (text_widget_1
, text_widget_2
)
那么你可以使用第一个选项。
def mousewheel(evt):
text_widget_1.yview_scroll(-1*(evt.delta), 'units') # For MacOS
text_widget_2.yview_scroll(-1*(evt.delta), 'units') # For MacOS
text_widget_1.yview_scroll(int(-1*(evt.delta/120)), 'units') # For windows
text_widget_2.yview_scroll(int(-1*(evt.delta/120)), 'units') # For windows
text_widget_1.bind_class("Text", '<MouseWheel>', mousewheel)
...
或者,如果您有更多文本小部件,但只想为 (text_widget_1
、text_widget_2
) 更改它,那么请单独绑定,参考第二个选项。
...
text_widget_1.bind_class(text_widget_1, '<MouseWheel>', mousewheel)
text_widget_2.bind_class(text_widget_2, '<MouseWheel>', mousewheel)
...
因为我不知道你使用的是哪个操作系统,所以我包括了 windows 和 macOS 的滚动设置,根据你的操作系统使用。