PySimpleGUI/DemoPrograms/Demo_Design_Pattern_Persist...

22 lines
540 B
Python
Raw Normal View History

import PySimpleGUI as sg
layout = [
[sg.Text('Your typed chars appear here:'),
sg.Text(size=(20, 1), key='-OUTPUT-')],
[sg.Input('', key='-IN-')],
[sg.Button('Show'), sg.Button('Exit')]
]
window = sg.Window('Window Title', layout)
while True:
event, values = window.read()
2018-10-31 16:19:13 +00:00
print(event, values)
if event in (sg.WIN_CLOSED, 'Exit'):
break
2018-10-30 17:16:14 +00:00
if event == 'Show':
# change the "output" element to be the value of "input" element
window['-OUTPUT-'].update(values['-IN-'])
2018-10-31 16:19:13 +00:00
window.close()