Merge pull request #1095 from PySimpleGUI/Dev-latest

Release 0.7.0
This commit is contained in:
MikeTheWatchGuy 2019-01-21 10:47:54 -05:00 committed by GitHub
commit 6403c9934c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -6833,9 +6833,14 @@ def main():
[Text('Welcome to PySimpleGUI!', font='Arial 15', text_color='red')], [Text('Welcome to PySimpleGUI!', font='Arial 15', text_color='red')],
[Text('You should be importing this module rather than running it', justification='l', size=(50, 1))], [Text('You should be importing this module rather than running it', justification='l', size=(50, 1))],
[Text('Here is your sample input window....')], [Text('Here is your sample input window....')],
[Text('Source Folder', size=(15, 1), justification='right'), InputText('Source', focus=True), [InputText('Source', focus=True),
FileBrowse()], FileBrowse()],
[Text('Destination Folder', size=(15, 1), justification='right'), InputText('Dest'), FolderBrowse()], [InputText('Dest'), FolderBrowse()],
[Checkbox('Checkbox 1', size=(15,1)), Checkbox('Checkbox 2')],
[Radio('Radio 1', 'group', size=(15,1)), Radio('Radio 2', 'group')],
[Multiline('Multiline Input', do_not_clear=True, size=(40,4), enable_events=True)],
[MultilineOutput('Multiline Output', size=(40,5), text_color='blue')],
[Combo(values=['Combo 1', 'Combo 2', 'Combo 3'], default_value='Combo 2', key='_COMBO_', [Combo(values=['Combo 1', 'Combo 2', 'Combo 3'], default_value='Combo 2', key='_COMBO_',
enable_events=True, readonly=False, tooltip='Combo box', disabled=False, font='Courier 18', enable_events=True, readonly=False, tooltip='Combo box', disabled=False, font='Courier 18',
size=(12, 1))], size=(12, 1))],