Exercice 12
Ecrire un programme en Python Tkinter permettant d'afficher une fenêtre Tkinter qui change de couleur d'arrière plan au survole de la souris:
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from tkinter import* root = Tk() root.geometry("300x200") def action1(event): root['background'] = 'yellow' def action2(event): root['background'] = 'black' root.bind('<Enter>' , action1) root.bind('<Leave>' , action2) root.mainloop() |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 12: fenêtre tkinter qui change de couleur de background au survole de la souris”