Renamed ALL oprtional parameters
Switched from CamelCase to all_lower_case
This commit is contained in:
parent
c3ee62f29f
commit
0ec43ac112
7 changed files with 531 additions and 534 deletions
|
@ -1,5 +1,6 @@
|
|||
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')
|
||||
|
@ -7,4 +8,4 @@ if not rc:
|
|||
|
||||
msg = '\n'.join([f'{i}' for i in range(0,int(number))])
|
||||
|
||||
sg.ScrolledTextBox(msg, Height=10)
|
||||
sg.ScrolledTextBox(msg, height=10)
|
Loading…
Add table
Add a link
Reference in a new issue