Update interface.py
This commit is contained in:
parent
9e2f962cb8
commit
cfe2e79466
|
@ -1,21 +1,17 @@
|
||||||
import tkinter
|
from tkinter import *
|
||||||
|
|
||||||
# On crée une fenêtre
|
# On crée une fenêtre
|
||||||
fenetre = Tk()
|
fenetre = Tk()
|
||||||
|
|
||||||
# On choisit ce qu'on affiche dans la fenêtre
|
# On choisit ce qu'on affiche dans la fenêtre
|
||||||
champ_label = Label(fenetre, text="Choisir d'afficher les histogrammes ou la matrice dynamique")
|
champ_label = Label(fenetre, text="Choisir d'afficher les histogrammes ou la matrice dynamique").grid()
|
||||||
|
|
||||||
# On met le label à afficher dans la fenêtre
|
|
||||||
champ_label.pack()
|
|
||||||
|
|
||||||
bouton_histo = Button(fenetre, text="histogrammes", command=fenetre.affichage_strats_resultats_totaux)
|
bouton_histo = Button(fenetre, text="histogrammes", command=fenetre.quit).grid()
|
||||||
bouton_histo.pack()
|
|
||||||
|
|
||||||
bouton_mat = Button(fenetre, text="matrice dynamique", command=fenetre.animation_strat)
|
bouton_mat = Button(fenetre, text="matrice dynamique", command=fenetre.quit).grid()
|
||||||
bouton_mat.pack()
|
|
||||||
|
|
||||||
fenetre.geometry("500x100")
|
fenetre.geometry("400x100")
|
||||||
|
|
||||||
# On démarre la boucle Tkinter qui s'interompt quand on ferme la fenêtre
|
# On démarre la boucle Tkinter qui s'interompt quand on ferme la fenêtre
|
||||||
fenetre.mainloop()
|
fenetre.mainloop()
|
||||||
|
|
Loading…
Reference in New Issue