1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| btn1 = tkinter.Button(root,text = '1') btn1.place(x = 20,y = 20,width = 40,height = 40)
btn2 = tkinter.Button(root,text = '2') btn2.place(x = 80,y = 20,width = 40,height = 40)
btn3 = tkinter.Button(root,text = '3') btn3.place(x = 140,y = 20,width = 40,height = 40)
btn4 = tkinter.Button(root,text = '4') btn4.place(x = 20,y = 80,width = 40,height = 40)
btn5 = tkinter.Button(root,text = '5') btn5.place(x = 80,y = 80,width = 40,height = 40)
btn6 = tkinter.Button(root,text = '6') btn6.place(x = 140,y = 80,width = 40,height = 40)
def changebg(e): e.widget['bg'] = 'green' def changebg(e): e.widget['bg'] = 'yellow'
btn1.bind_class('Button','<Enter>',changebg)
btn1.bind_class('Button','<Leave>',changebg)
|