Dans ce tutoriel python Tkinter, nous allons voir comment utiliser les options background (bg), foreground (fg) et font pour un objet button Tkinter.
- background (bg) : définit la couleur d'arrière-plan du bouton Tkinter.
- foreground (fg) : définit la couleur du texte du bouton Tkinter.
- font : défint le type et la taille de la police pour le texte du bouton Tkinter.
Exemple
1 2 3 4 5 6 7 8 9 10 11 |
from tkinter import * root = Tk() root.geometry("450x200") button_options = Button(root , text ="Button with options: bg, fg, font ", bg = "Black" , fg = "White" , font = ('Magneto' , 22)) button_options.pack() root.mainloop() |
Après exécution du code on obtient la fenêtre suivante:
Younes Derfoufi
CRMEF OUJDA
1 thought on “Les options background, foreground et font d'un bouton python tkinter”