RELEASE 3.4.0

This commit is contained in:
MikeTheWatchGuy 2018-09-18 12:05:44 -04:00
parent 9db96fd10f
commit 92bafa24f0
18 changed files with 101 additions and 77 deletions

View file

@ -1,17 +1,15 @@
import PySimpleGUI as sg
print (sg.PopupYesNo('Yes No'))
print(sg.PopupGetFolder('Get text', background_color='blue', text_color='white'))
print(sg.PopupGetFile('Get text', background_color='blue', text_color='white'))
print(sg.PopupGetFolder('Get text', background_color='blue', text_color='white'))
print(sg.PopupGetText('Get text', background_color='blue', text_color='white', location=(1000,200)))
print(sg.PopupGetFile('Get file', background_color='blue', text_color='white'))
print(sg.PopupGetFolder('Get folder', background_color='blue', text_color='white'))
sg.Popup('Simple popup')
sg.PopupNonBlocking('Non Blocking')
sg.PopupError('Error')
sg.PopupYesNo('Yes No')
sg.PopupNonBlocking('Non Blocking', location=(500,500))
sg.PopupNoTitlebar('No titlebar')
sg.PopupNoBorder('No border')
sg.PopupNoFrame('No frame')
@ -19,6 +17,3 @@ sg.PopupNoButtons('No Buttons')
sg.PopupCancel('Cancel')
sg.PopupOKCancel('OK Cancel')
sg.PopupAutoClose('Autoclose')
print(sg.PopupGetText('Get text'))
print(sg.PopupGetFile('Get File'))
print(sg.PopupGetFolder('Get folder'))