Compare commits

..

4 Commits

Author SHA1 Message Date
7da1c028ac Merge branch 'first_add_comments' of https://git.herisson.ovh/Darkan/image_python.git
# Conflicts:
#	.gitignore

Signed-off-by: Andy K <donfackandy@gmail.com>
2022-11-09 11:17:09 +01:00
975e7b9c23 Merge branch 'window' of https://git.herisson.ovh/Darkan/image_python.git 2022-11-09 11:10:00 +01:00
e345a69657
Debut de la creation d'une fenêtre avec tkinter 2022-11-09 09:26:22 +01:00
1e2225337e Ajout de .gitignore
Signed-off-by: Andy K <donfackandy@gmail.com>
2022-11-08 21:40:49 +01:00

View File

@ -1 +1,18 @@
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()