L'option activebackground du bouton Tkinter définit la couleur d'arrière-plan du bouton lorsque le bouton est enfoncé et sous le curseur.
Dans ce tutoriel, nous allons apprendre à utiliser l'option activebackground de la classe Tkinter Button() avec un exemple simple.
Exemple
1 2 3 4 5 6 7 8 9 |
from tkinter import * root = Tk() root.geometry("400x200") button_example = Button(root , text ="Example Of Active Background For Button ", activebackground='#FFFF00') button_example.pack() root.mainloop() |
Quand le bouton est enfoncé, il change de couleur d'arrière plan et prend la couleur spécifiée par l'option activebackground.
Younes Derfoufi
CRMEF OUJDA
Acheter sur Très Facile !
1 thought on “Option activebackground d'un bouton Tkinter”