Release 3.9.1 & 1.1.2
This commit is contained in:
parent
8f7356f425
commit
91da5ed7b2
23 changed files with 487 additions and 150 deletions
11
Demo_YouTube_Intro.py
Normal file
11
Demo_YouTube_Intro.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
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]))
|
Loading…
Add table
Add a link
Reference in a new issue