在 Tkinter 中制作鼠标悬停事件函数列表
Making a list of mouse over event functions in Tkinter
我正在为医疗工具制作 GUI 作为 class 项目。给定条件,它应该输出从不同网站(如 webMD)收集的一系列治疗方案。我希望能够处理列出的任何治疗上的鼠标悬停事件,以提供有关治疗的更多信息(例如药物类别,是否为仿制药等)。
标签存储在一个列表中,因为我不知道事先会返回多少种不同的处理方法。所以我的问题是如何使这些鼠标悬停事件起作用。我无法为每个可能的标签编写函数定义,它们的数量可能有数百或数千。我确定有一种非常 pythonic 的方法可以做到这一点,但我不知道是什么。
这是我创建标签的代码:
def search_click():
"""
Builds the search results after the search button has been clicked
"""
self.output_frame.destroy() # Delete old results
build_output() # Rebuild output frames
treament_list = mockUpScript.queryConditions(self.condition_entry.get()) # Get treatment data
labels = []
frames = [self.onceFrame, self.twiceFrame, self.threeFrame, self.fourFrame] # holds the list of frames
for treament in treament_list: # For each treatment in the list
label = ttk.Label(frames[treament[1] - 1], text=treament[0]) # Build the label for treatment
labels.append(label) # Add the treatment to the list
label.pack()
这是 GUI 的样子(不要判断 [-; )
文本 "Hover over drugs for information" 应根据鼠标悬停在哪种药物上进行更改。
I can't write a function definition for every single possible label, they would number in the hundreds or thousands. I'm sure there's a very pythonic way to do it, but I have no idea what.
查看 lambda functions 与您想要的几乎相同。
在你的情况下,类似于:
def update_bottom_scroll_bar(text):
# whatever you want to do to update the text at the bottom
for treatment in treament_list: # For each treatment in the list
label = ttk.Label(frames[treatment[1] - 1], text=treatment[0]) # Build the label for treatment
label.bind("<Enter>", lambda event, t=treatment: update_bottom_scroll_bar(text=t))
label.bind("<Leave>", lambda event: update_bottom_scroll_bar(text='Default label text'))
labels.append(label) # Add the treatment to the list
label.pack()
另外请正确拼写变量,我将 treament
更正为 treatment
...
我正在为医疗工具制作 GUI 作为 class 项目。给定条件,它应该输出从不同网站(如 webMD)收集的一系列治疗方案。我希望能够处理列出的任何治疗上的鼠标悬停事件,以提供有关治疗的更多信息(例如药物类别,是否为仿制药等)。
标签存储在一个列表中,因为我不知道事先会返回多少种不同的处理方法。所以我的问题是如何使这些鼠标悬停事件起作用。我无法为每个可能的标签编写函数定义,它们的数量可能有数百或数千。我确定有一种非常 pythonic 的方法可以做到这一点,但我不知道是什么。
这是我创建标签的代码:
def search_click():
"""
Builds the search results after the search button has been clicked
"""
self.output_frame.destroy() # Delete old results
build_output() # Rebuild output frames
treament_list = mockUpScript.queryConditions(self.condition_entry.get()) # Get treatment data
labels = []
frames = [self.onceFrame, self.twiceFrame, self.threeFrame, self.fourFrame] # holds the list of frames
for treament in treament_list: # For each treatment in the list
label = ttk.Label(frames[treament[1] - 1], text=treament[0]) # Build the label for treatment
labels.append(label) # Add the treatment to the list
label.pack()
这是 GUI 的样子(不要判断 [-; )
文本 "Hover over drugs for information" 应根据鼠标悬停在哪种药物上进行更改。
I can't write a function definition for every single possible label, they would number in the hundreds or thousands. I'm sure there's a very pythonic way to do it, but I have no idea what.
查看 lambda functions 与您想要的几乎相同。
在你的情况下,类似于:
def update_bottom_scroll_bar(text):
# whatever you want to do to update the text at the bottom
for treatment in treament_list: # For each treatment in the list
label = ttk.Label(frames[treatment[1] - 1], text=treatment[0]) # Build the label for treatment
label.bind("<Enter>", lambda event, t=treatment: update_bottom_scroll_bar(text=t))
label.bind("<Leave>", lambda event: update_bottom_scroll_bar(text='Default label text'))
labels.append(label) # Add the treatment to the list
label.pack()
另外请正确拼写变量,我将 treament
更正为 treatment
...