Dateien nach "/" hochladen
in bearbeitung
This commit is contained in:
parent
f3cd333a94
commit
6717a99968
15
GUI.py
Normal file
15
GUI.py
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
import tkinter as tk
|
||||||
|
root = tk.Tk()
|
||||||
|
label1 = tk.Label(root, text="Schere, Stein, Papier",
|
||||||
|
font=("times", 30))
|
||||||
|
label1.grid(row=0, column=1)
|
||||||
|
|
||||||
|
sp1_wert=tk.StringVar()
|
||||||
|
eingabefeld=tk.Entry(root, textvariable=sp1_wert, show="*", font=(30))
|
||||||
|
eingabefeld.grid(row=1)
|
||||||
|
|
||||||
|
sp2_wert=tk.StringVar()
|
||||||
|
eingabefeld2=tk.Entry(root, textvariable=sp2_wert, show="*", font=(30) )
|
||||||
|
eingabefeld2.grid(row=1, column=2)
|
||||||
|
|
||||||
|
root.mainloop()
|
Loading…
x
Reference in New Issue
Block a user