PySimpleGUI/DemoPrograms/Demo_YouTube_Intro.py

11 lines
257 B
Python
Raw Normal View History

2018-10-08 17:30:33 +00:00
import PySimpleGUI as sg
layout = [[sg.Text('What is your name?')],
[sg.InputText()],
[sg.Button('Ok')]]
window = sg.Window('Title of Window', layout)
event, values = window.read()
window.close()
2018-10-08 17:30:33 +00:00
sg.popup('Hello {}'.format(values[0]))