您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“Python中Tkinter點擊按鈕觸發事件的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Python中Tkinter點擊按鈕觸發事件的示例分析”這篇文章吧。
先看代碼:
import tkinter as tk class App: def __init__(self, root): root.title("打招呼測試") frame = tk.Frame(root) frame.pack() self.hi_there = tk.Button(frame, text="打招呼", fg="blue", command=self.say_hi) self.hi_there.pack(side=tk.LEFT) def say_hi(self): print("您剛才通過點擊打招呼觸發了我:大家好,我是badao!") root = tk.Tk() app = App(root) root.mainloop()
程序跑起來后:
代碼解釋:
#導入tkinter模塊并創建別名tk import tkinter as tk class App: def __init__(self, root): #設置標題 root.title("打招呼測試") #創建一個框架,然后在里面添加一個Button組件 #框架的作用一般是在復雜的布局中起到將組件分組的作用 frame = tk.Frame(root) #pack()自動調節組件自身尺寸 frame.pack() #創建一個按鈕組件,fg是foreground(前景色) self.hi_there = tk.Button(frame, text="打招呼", fg="blue", command=self.say_hi) #左對齊 self.hi_there.pack(side=tk.LEFT) def say_hi(self): print("您剛才通過點擊打招呼觸發了我:大家好,我是badao!") #創建一個toplevel的根窗口,并把它作為參數實例化app對象 root = tk.Tk() app = App(root) #開始主事件循環 root.mainloop()
以上是“Python中Tkinter點擊按鈕觸發事件的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。