Exercice1
En utilisant le système de gestion des widgets Tkinter Grid Layout, écrire un programme en Python Tkinter qui affiche la vue suivante:
Solution
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("300x100") 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 grid() btn1.grid(row = 0 , column = 0 ) btn2.grid(row = 0 , column = 1 ) btn3.grid(row = 1 , column = 0 ) btn4.grid(row = 1 , column = 1 ) root.mainloop() |
Younes Derfoufi
CRMEF OUJDA
Acheter sur Très Facile !
3 thoughts on “Solution Exercice 1: Tkinter Grid Layout”