PySimpleGUI/Demo High Level APIs.py
MikeTheWatchGuy a430c86ad2 Readme updates. Button color
Still working on completing the Readme.  Changed the global button colors to white on black, the new signature for PySimpleGUI.
2018-07-13 10:53:50 -04:00

10 lines
No EOL
246 B
Python

import PySimpleGUI as sg
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)