commit
6403c9934c
|
@ -6833,9 +6833,14 @@ def main():
|
|||
[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('Here is your sample input window....')],
|
||||
[Text('Source Folder', size=(15, 1), justification='right'), InputText('Source', focus=True),
|
||||
[InputText('Source', focus=True),
|
||||
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_',
|
||||
enable_events=True, readonly=False, tooltip='Combo box', disabled=False, font='Courier 18',
|
||||
size=(12, 1))],
|
||||
|
|
Loading…
Reference in New Issue