我有一个带有水平和垂直滚动条的文本小部件。我希望能够正常上下滚动,并在保持移位时左右滚动。我无法弄清楚要绑定<Shift-MouseWheel>
事件的内容,或回调应该是什么。这是mainWindow(Tk.TopLevel)的代码段__init__():
# console text
self.yScroll = Tk.Scrollbar(self)
self.yScroll.pack(side=Tk.RIGHT, fill=Tk.Y)
self.xScroll = Tk.Scrollbar(self)
self.xScroll.pack(side=Tk.BOTTOM, fill=Tk.X)
self.log = Tk.Text(self,
wrap=Tk.NONE,
width=80,
height=24,
yscrollcommand=self.yScroll.set,
xscrollcommand=self.xScroll.set)
self.log.pack()
self.yScroll.config(command=self.log.yview)
self.xScroll.config(command=self.log.xview, orient=Tk.HORIZONTAL)
# shift scroll binding
self.bind('<Shift-MouseWheel>', ) # what do I need here?
我已成功将shift-scroll绑定到简单的打印功能等,但我不确定如何将其绑定到文本框滚动。
答案 0 :(得分:4)
您需要让绑定调用自己的函数,然后让该函数调用窗口小部件的xview_scroll方法:
self.bind('<Shift-MouseWheel>', self.scrollHorizontally)
...
def scrollHorizontally(self, event):
self.log.xview_scroll((event.delta/120), "units")
您可能需要调整每次单击滚轮时要滚动的单位数(或#34;页数&#34;)。
This answer提供了有关事件delta
属性的平台差异的更多信息。