1 Commits

Author SHA1 Message Date
3d071bae42 Merge pull request 'files_organisation' (#5) from files_organisation into master
Reviewed-on: #5
2022-11-09 08:47:55 +01:00

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()