PySimpleGUI/Demo_YouTube_Intro.py
2018-10-08 13:30:33 -04:00

11 lines
No EOL
251 B
Python

import PySimpleGUI as sg
layout = [[sg.Text('What is your name?')],
[sg.InputText()],
[sg.Button('Ok')]]
window = sg.Window('Title of Window').Layout(layout)
button, values = window.Read()
sg.Popup('Hello {}'.format(values[0]))