案例;我的第一個界面(附思路和代碼)
步驟:
1.?導入庫(PySimpleGUI)
2.?定義布局
3.?創(chuàng)建窗口
4.?事件關閉
5.?關閉窗口
第三方庫安裝命令:pip install 庫名

代碼:
#我的第一個界面My first interface
#1.導入庫
import PySimpleGUI as sg
#第三方庫安裝命令:pip install PySimpleGUI
#更新pip工具命令:python -m pip install --upgrade pip
#2.定義布局,確定行數(shù)
layout=[
????[sg.Text("請輸入您的信息")],#第一行
????[sg.Text("your name"),sg.InputText()],#第二行
????[sg.Text("gender"),sg.InputText()],#第三行
????[sg.Text("natianality"),sg.InputText()],#第四行
????[sg.Button('sure'),sg.Button('cancel')],#第五行
]
#3.創(chuàng)建窗口
window=sg.Window('Python GUI',layout)
#Python GUI是窗口名稱
#4.事件循環(huán)
while True:
????event,values=window.read()#窗口的讀取,有兩個返回值(1個是事件,1個是值)
????if event==None:
????????break
#5.窗口關閉
window.close()
?
標簽: