Compare commits

..

No commits in common. "7da1c028ac5fac0251d96164c5db31ea8ed2a154" and "3d071bae42cd4032f8e1141626ce7d806bbd6fb7" have entirely different histories.

View File

@ -1,18 +1 @@
from tkinter import Tk, N, W, E, S, StringVar
from tkinter import ttk
class Window(Tk):
"""This is the class for the window systeme"""
def __init__(self, title):
Tk.__init__(self)
self.title = title
# TODO: Affichage ici
if __name__ == "__main__":
w = Window("test")
w.mainloop()