Exercice 5
Ecrire un programme en python Tkinter qui affiche à l'utilisateur une fenêtre affichant un bouton de commande qui affiche au click un message "Hello World !" sur un label.
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# coding: utf-8 from tkinter import * def validate(): lblResult['text'] = "Hello World !" root = Tk() root.geometry("400x200") root.title("Message Hello ") # Label qui affiche le résultat lblResult = Label(root , text = "") lblResult.place(x = 100 , y = 50) btnValidate = Button(root , text = "Validate" , command = validate) btnValidate.place(x = 100 , y = 80 , width = 200) root.mainloop() |
Younes Derfoufi
CRMEF OUJDA
Acheter sur Très Facile !
2 thoughts on “Solution Exercice 5 : bouton de commande Tkinter qui affiche un message sur un label”