PySimpleGUI/Demo High Level APIs.py
MikeTheWatchGuy 0ec43ac112 Renamed ALL oprtional parameters
Switched from CamelCase to all_lower_case
2018-07-16 14:52:16 -04:00

11 lines
No EOL
312 B
Python

import PySimpleGUI as sg
sg.MsgBox('Title', 'My first message... Is the length the same?')
rc, number = sg.GetTextBox('Title goes here', 'Enter a number')
if not rc:
sg.MsgBoxError('You have cancelled')
exit(0)
msg = '\n'.join([f'{i}' for i in range(0,int(number))])
sg.ScrolledTextBox(msg, height=10)