删除ttk Combobox鼠标滚轮绑定

时间:2017-05-30 17:57:50

标签: python tkinter ttk

我有一个ttk Combobox我想从鼠标滚轮解除绑定,以便在Combobox处于活动状态时滚动滚轮不会改变值(而是滚动框架)。

我尝试过unbind以及绑定和空函数但是都不起作用。见下文:

import Tkinter as tk
import ttk


class app(tk.Tk):
    def __init__(self, *args, **kwargs):
        tk.Tk.__init__(self, *args, **kwargs)
        self.interior = tk.Frame(self)

        tkvar = tk.IntVar()
        combo = ttk.Combobox(self.interior,
                             textvariable = tkvar,
                             width = 10,
                             values =[1, 2, 3])
        combo.unbind("<MouseWheel>")
        combo.bind("<MouseWheel>", self.empty_scroll_command)
        combo.pack()
        self.interior.pack()


    def empty_scroll_command(self, event):
        return

sample = app()
sample.mainloop()

非常感谢任何帮助。

谢谢!

1 个答案:

答案 0 :(得分:3)

默认绑定位于内部窗口小部件类上,该类在您添加的任何自定义绑定之后执行。您可以删除将影响整个应用程序的默认绑定,也可以将特定窗口小部件绑定到返回字符串"break"的自定义函数,这将阻止默认绑定的运行。

删除类绑定

ttk组合框的内部类是TCombobox。您可以将其传递给unbind_class

# Windows & OSX
combo.unbind_class("TCombobox", "<MouseWheel">)

# Linux and other *nix systems:
combo.unbind_class("TCombobox", "<ButtonPress-4>")
combo.unbind_class("TCombobox", "<ButtonPress-5>")

添加自定义绑定

当对个人的绑定返回字符串"break"时,将阻止处理默认绑定。

# Windows and OSX
combo.bind("<MouseWheel>", self.empty_scroll_command)

# Linux and other *nix systems
combo.bind("<ButtonPress-4>", self.empty_scroll_command)
combo.bind("<ButtonPress-5>", self.empty_scroll_command)

def empty_scroll_command(self, event):
    return "break"