bisschen hübscher gemacht

This commit is contained in:
Domenik Rath 2023-08-04 11:27:04 +02:00
parent 5d577470d8
commit c9692ed7bb

14
GUI.py
View File

@ -1,7 +1,7 @@
from tkinter import *
from tkinter import messagebox
root = Tk()
root.geometry("850x300")
def ok():
@ -19,14 +19,14 @@ def ok():
Label(root, text="S = Schere, R = Stein, P = Papier ").grid()
Label(root, text="S = Schere, R = Stein, P = Papier ", font=("times",25)).grid(column=1)
s1_wert = Entry(root)
s1_wert.grid()
s2_wert = Entry(root)
s2_wert.grid()
s1_wert = Entry(root,font=(28))
s1_wert.grid(row=1)
s2_wert = Entry(root,font=(28))
s2_wert.grid(row=1,column=2)
Button(root, text="Wählen", command=ok).grid()
Button(root, text="Wählen", command=ok, font=(30)).grid(row=2, column=1)