Exercice3
Reprendre l'exercice précédent (Exercice1) en utilisant la méthode place():
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# coding: utf-8 from tkinter import * root = Tk() root.geometry("400x300") root.title("Tkinter Grid Layout") # création des boutons btn1 = Button(root , text = "Button 1" ) btn2 = Button(root , text = "Button 2" ) btn3 = Button(root , text = "Button 3" ) btn4 = Button(root , text = "Button 4" ) # emplacement des boutons avec la méthod place() btn1.place(x = 50 , y = 50 , width = 100) btn2.place(x = 200 , y = 50 , width = 100) btn3.place(x = 50 , y = 100 , width = 100) btn4.place(x = 200 , y = 100 , width = 100) root.mainloop() |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 3: Méthode En Python Tkinter”