什麼是Tkinter
你好Tkinter
HelloTkinter擴展
GUI類別庫設計架構-Tkinter架構分析
Config配置外觀
Widget Style元件外觀屬性
事件事件和綁定
基礎視窗-頂層
菜單Menu
工具列Toolbar
留言箱
狀態列StatusBar
擴充學習更多的Widget
Grid佈局
瑞英2年前
import tkinter import tkinter.messagebox top = tkinter.Tk() def helloCallBack(): tkinter.messagebox.showinfo("Hello Python", "Hello Runoob") B = tkinter.Button(top, text="点我", command=helloCallBack) B.pack() top.mainloop()
1