diff --git a/parties/interface.py b/parties/interface.py new file mode 100644 index 0000000..84bb4c2 --- /dev/null +++ b/parties/interface.py @@ -0,0 +1,21 @@ +import tkinter + +# On crée une fenêtre +fenetre = Tk() + +# On choisit ce qu'on affiche dans la fenêtre +champ_label = Label(fenetre, text="Choisir d'afficher les histogrammes ou la matrice dynamique") + +# 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.pack() + +bouton_mat = Button(fenetre, text="matrice dynamique", command=fenetre.animation_strat) +bouton_mat.pack() + +fenetre.geometry("500x100") + +# On démarre la boucle Tkinter qui s'interompt quand on ferme la fenêtre +fenetre.mainloop()