“Couleur de premier plan du bouton Tkinter Cliquez” Réponses codées

Comment modifier la couleur de l'arrière-plan du bouton pendant que CLICT TKINTER PYTHON

#Type "activebackground=" + your chosen background color between commas
col = Button(yourWindow, text='col', bg='gray25', activebackground='cyan')
KKNich

Couleur de premier plan du bouton Tkinter Cliquez

# use activebackground and activeforeground properties to change the 
# button color at the instance of being pressed.
btn = Button(frame, text="Click me", activebackground="blue",
             activeforeground="white")
# activebackground will change the background of the button when clicked
# activeforeground will change the text color of the button when clicked
Rippler

Réponses similaires à “Couleur de premier plan du bouton Tkinter Cliquez”

Questions similaires à “Couleur de premier plan du bouton Tkinter Cliquez”

Plus de réponses similaires à “Couleur de premier plan du bouton Tkinter Cliquez” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code