2017年8月25日 星期五

Python 的內建 GUI 模組 ttk Tkinter 測試 : 建立視窗--按鈕事件處理函數 clickOK()

 ttk Tkinter 測試 OK按鈕真的變漂亮了!



#==============================================================
# tkinter 後來又推出了加強版的
# ttk 模組來美化元件的外觀, 這 ttk 意思是 Themed Tkinter, 亦即主題化版本
#==============================================================
from tkinter import *
from tkinter.ttk import *

win=Tk()
win.title("ttk GUI")
label=Label(win, text="Hello World!")
count=0
def clickOK():
    global count
    count=count + 1
    label.config(text="Click OK " + str(count) + " times")
button=Button(win, text="OK", command=clickOK)
label.pack()
button.pack()
win.mainloop()

沒有留言:

張貼留言