1. 程式人生 > >python3 Tkinter GUI 試水

python3 Tkinter GUI 試水

int In lin 界面 bold reat btn fill style

from tkinter import * #導入tkinter下所有包,用於GUI開發
#窗口創建
tk=Tk()
cans=Canvas(tk,width=400,height=400)#定義窗口規格
cans.pack()
cans.create_line(0,0,600,600,fill=‘red‘) #畫線
cans.create_arc(10,10,200,100) #畫弧
def test():
print(‘GUI test‘)
btn=Button(tk,text=‘click me‘,command=test)
#顯示界面

btn.pack()
#運行當前窗口

tk.mainloop()

python3 Tkinter GUI 試水