adding from new mac

This commit is contained in:
2019-11-19 23:50:00 +00:00
parent a3ad3fd1d0
commit 16e455bc83
67 changed files with 2677 additions and 0 deletions

20
gui-test/popup2.py Normal file
View File

@@ -0,0 +1,20 @@
import PySimpleGUIQt as sg
myVar = 1
def main(var: str, *args, **kwargs) -> list:
event, values = sg.Window(
'Get filename example',
[
[sg.Text('Filename')],
[sg.Input(), sg.FileBrowse()],
[sg.OK(), sg.Cancel()],
],
).Read()
return list
# if __name__ == '__main__':
main()