Got a few of the Demos up to date with changes standard to many demos (edit me, get versions for example)
This commit is contained in:
parent
dba12e59f2
commit
f1f60b03a1
5 changed files with 41 additions and 38 deletions
|
@ -39,7 +39,7 @@ def main():
|
|||
# sg.theme('black')
|
||||
|
||||
menu_def = [['&File', ['&Open Ctrl-O', '&Save Ctrl-S', '&Properties', 'E&xit']],
|
||||
['&Edit', ['Me', 'Special', 'Normal',['Normal1', 'Normal2'] , 'Undo']],
|
||||
['&Edit', ['Edit Me', 'Special', 'Normal',['Normal1', 'Normal2'] , 'Undo']],
|
||||
['!Disabled', ['Special', 'Normal',['Normal1', 'Normal2'], 'Undo']],
|
||||
['&Toolbar', ['---', 'Command &1::Command_Key', 'Command &2', '---', 'Command &3', 'Command &4']],
|
||||
['&Help', ['&About...']], ]
|
||||
|
@ -47,7 +47,7 @@ def main():
|
|||
layout = [[sg.MenubarCustom(menu_def, pad=(0,0), k='-CUST MENUBAR-')],
|
||||
[sg.Multiline(size=(70, 20), reroute_cprint=True, write_only=True, no_scrollbar=True, k='-MLINE-')]]
|
||||
|
||||
window = sg.Window("Custom Titlebar with Custom (Simulated) Menubar", layout, use_custom_titlebar=True, keep_on_top=True)
|
||||
window = sg.Window("Custom Titlebar with Custom (Simulated) Menubar", layout, use_custom_titlebar=True, keep_on_top=True, right_click_menu=sg.MENU_RIGHT_CLICK_EDITME_VER_EXIT)
|
||||
|
||||
# ------ Event Loop ------ #
|
||||
while True:
|
||||
|
@ -66,8 +66,10 @@ def main():
|
|||
sg.popup('About this program', 'Simulated Menubar to accompany a simulated Titlebar',
|
||||
'PySimpleGUI Version', sg.get_versions(), grab_anywhere=True, keep_on_top=True)
|
||||
window.reappear()
|
||||
elif event == 'Me':
|
||||
elif event == 'Edit Me':
|
||||
sg.execute_editor(__file__)
|
||||
elif event == 'Version':
|
||||
sg.popup_scrolled(__file__, sg.get_versions(), keep_on_top=True, non_blocking=True)
|
||||
elif event.startswith('Open'):
|
||||
filename = sg.popup_get_file('file to open', no_window=True)
|
||||
print(filename)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue