From ce4ef4f094f116bb95e92f4b396b8a1055a2c110 Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Mon, 21 Jan 2019 10:47:24 -0500 Subject: [PATCH] Release 0.7.0 --- PySimpleGUIWx/PySimpleGUIWx.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/PySimpleGUIWx/PySimpleGUIWx.py b/PySimpleGUIWx/PySimpleGUIWx.py index 873a392e..7e1117af 100644 --- a/PySimpleGUIWx/PySimpleGUIWx.py +++ b/PySimpleGUIWx/PySimpleGUIWx.py @@ -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))],