Updated layout

This commit is contained in:
Josh Biltonen 2022-08-25 18:10:43 -07:00
parent c9bb9cb290
commit b1f0fa161a

11
main.py
View File

@ -4,10 +4,17 @@ import PySimpleGUI as sg
# Define the window's contents
layout = [[sg.Text("What's your name?")],
layout = [[sg.Table([["word","Yes"]],["Serial Number","Brand","Grade","Name"])],
[sg.Text("Serial Number")],
[sg.Input(key='-INPUT-')],
[sg.Text("Brand")],
[sg.Input(key='-INPUT-')],
[sg.Text("Grade")],
[sg.Input(key='-INPUT-')],
[sg.Text("Name")],
[sg.Input(key='-INPUT-')],
[sg.Text(size=(40,1), key='-OUTPUT-')],
[sg.Button('Ok'), sg.Button('Quit')]]
[sg.Button('Check In'), sg.Button('Check Out')]]