Major update of all demo programs to use new PEP8 bindings, etc
This commit is contained in:
parent
3f7c87c562
commit
7f52778bcc
307 changed files with 19546 additions and 3297 deletions
|
@ -4,8 +4,8 @@ layout = [[sg.Text('What is your name?')],
|
|||
[sg.InputText()],
|
||||
[sg.Button('Ok')]]
|
||||
|
||||
window = sg.Window('Title of Window').Layout(layout)
|
||||
window = sg.Window('Title of Window', layout)
|
||||
event, values = window.read()
|
||||
window.close()
|
||||
|
||||
event, values = window.Read()
|
||||
|
||||
sg.Popup('Hello {}'.format(values[0]))
|
||||
sg.popup('Hello {}'.format(values[0]))
|
Loading…
Add table
Add a link
Reference in a new issue