Reformatted
This commit is contained in:
parent
f1a063ad76
commit
ef324f63d6
|
@ -5,9 +5,11 @@ if sys.version_info[0] >= 3:
|
||||||
else:
|
else:
|
||||||
import PySimpleGUI27 as sg
|
import PySimpleGUI27 as sg
|
||||||
|
|
||||||
layout = [[sg.Text('Your typed chars appear here:'), sg.Text('', key='_OUTPUT_')],
|
layout = [
|
||||||
|
[sg.Text('Your typed chars appear here:'), sg.Text('', key='_OUTPUT_')],
|
||||||
[sg.Input(do_not_clear=True, key='_IN_')],
|
[sg.Input(do_not_clear=True, key='_IN_')],
|
||||||
[sg.Button('Show'), sg.Button('Exit')]]
|
[sg.Button('Show'), sg.Button('Exit')]
|
||||||
|
]
|
||||||
|
|
||||||
window = sg.Window('Window Title').Layout(layout)
|
window = sg.Window('Window Title').Layout(layout)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue