Refreshing demos. Updating to use newer techniques

This commit is contained in:
PySimpleGUI 2019-09-20 17:31:00 -04:00
parent e5e1021516
commit f7deaadf97
8 changed files with 33 additions and 696 deletions

View file

@ -8,7 +8,7 @@ import PySimpleGUI as sg
layout = [[ sg.Text('Window 1'),],
[sg.Input(do_not_clear=True)],
[sg.Text('', key='_OUTPUT_')],
[sg.Text('', size=(20,1), key='_OUTPUT_')],
[sg.Button('Launch 2')]]
win1 = sg.Window('Window 1').Layout(layout)