Python tkinter label widget mouse over

前端 未结 2 1765
我寻月下人不归
我寻月下人不归 2021-01-13 22:18

My objective is to change the text of label widget when the mouse move over the label.For one label i would do something like this:

import Tkinter as tk

def         


        
2条回答
  •  粉色の甜心
    2021-01-13 23:01

    Event functions can be included in a class and strings for displaying can be defined by a constructor.

    import Tkinter as tk
    
    class Labels(object):
        def __init__(self,number,basicStr,onMouseStr):
            self.i = number
            self.basicStr = basicStr + str(number)
            self.onMouseStr = onMouseStr
            mylist=['a','b','c','d','e']
            self.label = tk.Label(root,text="Label"+str(i))
            self.label.grid(row=1+i,column=1)
            self.label.bind("", self.fun1)
            self.label.bind("", self.fun2)
        def fun1(self,event):
            self.label.config(text=self.basicStr)
        def fun2(self,event):
            self.label.config(text=self.onMouseStr)
    root=tk.Tk()
    labelsList = []
    for i in range(5):
        lab = Labels(i,"haha","label"+str(i))
        labelsList.append(lab)
    root.mainloop()
    

提交回复
热议问题