.
This commit is contained in:
8
12fi5/AEuP/Bank/bank.py
Normal file
8
12fi5/AEuP/Bank/bank.py
Normal 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()
|
||||
Reference in New Issue
Block a user