11 lines
No EOL
257 B
Python
11 lines
No EOL
257 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)
|
|
event, values = window.read()
|
|
window.close()
|
|
|
|
sg.popup('Hello {}'.format(values[0])) |