ARE_Dynamic_2017/parties/interface.py

18 lines
506 B
Python
Raw Normal View History

2017-03-22 11:34:26 +01:00
from tkinter import *
2017-03-22 10:24:37 +01:00
# On crée une fenêtre
fenetre = Tk()
# On choisit ce qu'on affiche dans la fenêtre
2017-03-22 11:34:26 +01:00
champ_label = Label(fenetre, text="Choisir d'afficher les histogrammes ou la matrice dynamique").grid()
2017-03-22 10:24:37 +01:00
2017-03-22 11:34:26 +01:00
bouton_histo = Button(fenetre, text="histogrammes", command=fenetre.quit).grid()
2017-03-22 10:24:37 +01:00
2017-03-22 11:34:26 +01:00
bouton_mat = Button(fenetre, text="matrice dynamique", command=fenetre.quit).grid()
2017-03-22 10:24:37 +01:00
2017-03-22 11:34:26 +01:00
fenetre.geometry("400x100")
2017-03-22 10:24:37 +01:00
# On démarre la boucle Tkinter qui s'interompt quand on ferme la fenêtre
fenetre.mainloop()