Update Demo_Change_Submits_InputText.py

This commit is contained in:
MikeTheWatchGuy 2018-10-29 17:04:18 -04:00
parent 517c3fadac
commit 8b39df3fec
1 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,8 @@ else:
"""
layout = [[ sg.Text('Test of reading input field') ],
[sg.T('This input is normal'), sg.In()],
[sg.T('This input change submits'), sg.In(change_submits=True)],
[sg.T('This multiline input change submits'), sg.Multiline(change_submits=True, do_not_clear=True)],
[sg.T('This input is normal'), sg.In(), sg.FileBrowse()],
[sg.T('File Browse submits'), sg.In(change_submits=True,
do_not_clear=True,