This commit is contained in:
janik
2022-01-10 15:34:51 +01:00
parent e054b82c6d
commit a4789cd594
2 changed files with 11 additions and 3 deletions

8
12fi5/AEuP/Bank/bank.py Normal file
View File

@ -0,0 +1,8 @@
from tkinter import *
from tkinter import ttk
root = Tk()
frm = ttk.Frame(root, padding=10)
frm.grid()
ttk.Label(frm, text="Hello World!").grid(column=0, row=0)
ttk.Button(frm, text="Quit", command=root.destroy).grid(column=1, row=0)
root.mainloop()