Compare commits
4 Commits
3d071bae42
...
7da1c028ac
Author | SHA1 | Date | |
---|---|---|---|
7da1c028ac | |||
975e7b9c23 | |||
e345a69657 | |||
1e2225337e |
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user