PySimpleGUI/DemoPrograms/Demo_Super_Simple_Form.py

16 lines
554 B
Python
Raw Normal View History

import PySimpleGUI as sg
2018-08-06 03:17:42 +00:00
# Basic Example
layout = [[sg.Text('Please enter your Name, Address, Phone')],
[sg.Text('Name', size=(10, 1)), sg.InputText(key='-NAME-')],
[sg.Text('Address', size=(10, 1)), sg.InputText(key='-ADDRESS-')],
[sg.Text('Phone', size=(10, 1)), sg.InputText(key='-PHONE-')],
[sg.Button('Submit'), sg.Button('Cancel')]]
window = sg.Window('Simple Data Entry Window', layout)
event, values = window.read()
print(event, values['-NAME-'], values['-ADDRESS-'], values['-PHONE-'])
window.close()