adding from new mac
This commit is contained in:
23
gui-test/demo.py
Normal file
23
gui-test/demo.py
Normal file
@@ -0,0 +1,23 @@
|
||||
import PySimpleGUI as sg
|
||||
import sys
|
||||
|
||||
print(sys.version)
|
||||
|
||||
sg.change_look_and_feel('DarkAmber') # Add a little color
|
||||
# All the stuff inside your window.
|
||||
layout = [
|
||||
[sg.Text('Some text on Row 1')],
|
||||
[sg.Text('Enter something on Row 2'), sg.InputText()],
|
||||
[sg.Button('Ok'), sg.Button('Cancel')],
|
||||
]
|
||||
|
||||
# Create the Window
|
||||
window = sg.Window('Window Title', layout)
|
||||
# Event Loop to process "events" and get the "values" of the inputs
|
||||
while True:
|
||||
event, values = window.read()
|
||||
if event in (None, 'Cancel'): # if user closes window or clicks cancel
|
||||
break
|
||||
print('You entered ', values[0])
|
||||
|
||||
window.close()
|
||||
Reference in New Issue
Block a user