所以我要在平板电脑上安装的应用程序中有一个组合框,我想制作它以便可以在组合框上拖动以使其向下滚动。
到目前为止,我具有此功能:
def tablet_drag_y(event):
global last_y
if event.y_root-last_y>20 or event.y_root-last_y<-20:
last_y=event.y_root
event.widget.tag_remove(Tk.SEL, "1.0", Tk.END)
return "break"
event.widget.yview(Tk.SCROLL,-1*(event.y_root-last_y), "units")
last_y=event.y_root
event.widget.tag_remove(Tk.SEL, "1.0", Tk.END)
return "break"
这适用于“文本”窗口小部件(我需要此功能的大多数窗口小部件),但我只知道如何用以下方法绑定组合框:
book_drop_down.bind("<<ComboboxSelected>>", tablet_drag_y)
Idk如何将任何动作绑定到组合框,我该怎么做?
答案 0 :(得分:2)
您的问题(和解决方案)与this one类似。因此,那里的技巧和想法也适用于您的问题。
首先,像您描述的功能已经存在:当您在列表边界处进行b1移动时-列表会自动滚动。但是好吧,让我们自己实现一些东西。
首先,我们需要理解组合框什么都不是,而是条目和列表框小部件的组合,并且我们需要一个部分,即列表框(一个弹出窗口)。幸运的是,有a native function可让您将其撕裂:
popdown = combobox.tk.eval('ttk::combobox::PopdownWindow %s' % combobox)
在映射组合框后,您可以自由地将某些东西绑定到该小部件上:
class CustomBox(ttk.Combobox):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.bind('<Map>', self._handle_popdown_bind_on_initialisation)
def _handle_popdown_bind_on_initialisation(self, *args):
popdown = self.tk.eval('ttk::combobox::PopdownWindow %s' % self)
self._bind(('bind', '%s.f.l' % popdown), '<B1-Motion>', <callback_function>, None)
要详细说明一下:popdown
是顶层窗口,在您单击组合框时立即弹出,f
是列表框的框架容器,而l
-实际的列表框,其中包含您的值。看起来很简单。
所以让我们编写一些代码:
import tkinter as tk
import tkinter.ttk as ttk
import random
import string
class CustomBox(ttk.Combobox):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# schedule bind to handle popdown
self.bind('<Map>', self._handle_popdown_bind_on_initialisation)
def _handle_popdown_bind_on_initialisation(self, *args):
# once combobox is drawn bind callback function
popdown = self.tk.eval('ttk::combobox::PopdownWindow %s' % self)
self._bind(('bind', '%s.f.l' % popdown), '<B1-Motion>', drag, None)
def insert_something_to_combobox(box, count=30):
# just to insert some random stuff
box['values'] = [gen_key() for _ in range(count)]
def gen_key(size=6, chars=string.ascii_uppercase + string.digits):
# just to generate some random stuff
return ''.join(random.choice(chars) for _ in range(size))
def drag(event):
# test-event for B1-Motion over popdown
# get index of the nearest item
nearest_item = root.tk.call(event.widget, 'nearest', event.y)
# get actual size of listbox
actual_size = root.tk.call(event.widget, 'size')
# get current boundary positions for listbox
current_yview = root.tk.call(event.widget, 'yview')
# get current boundary items
current_items = [int(fraction * actual_size) for fraction in current_yview]
# get decider-item for scrolling
decider_item = sum(current_items) // 2
# debug-configure current item
mouse_over_label.configure(text='B1 over item: %s' % root.tk.call(event.widget, 'get', nearest_item))
if nearest_item < decider_item:
# scroll-up
root.tk.call(event.widget, 'see', current_items[0] - 1)
elif nearest_item > decider_item:
# scroll-down
root.tk.call(event.widget, 'see', current_items[1] + 1)
root = tk.Tk()
mouse_over_label = tk.Label()
mouse_over_label.pack()
combo_box = CustomBox()
combo_box.pack()
insert_something_to_combobox(combo_box)
root.mainloop()
这个想法很简单:获得一个决策器项,即中途列表框,然后根据当前元素的位置决定向上或向下滚动。