Python tkinter之Bind(綁定事件)的使用示例
# -*- encoding=utf-8 -*-import tkinterfrom tkinter import *def left_mouse_down(event): print(’鼠標(biāo)左鍵按下’) # 事件的屬性 widget = event.widget print(’觸發(fā)事件的組件:{}’.format(widget)) print(’組件顏色:{}’.format(widget.cget(’bg’))) widget_x = event.x # 相對(duì)于組件的橫坐標(biāo)x print(’相對(duì)于組件的橫坐標(biāo):{}’.format(widget_x)) widget_y = event.y # 相對(duì)于組件的縱坐標(biāo)y print(’相對(duì)于組件的縱坐標(biāo):{}’.format(widget_y)) x_root = event.x_root # 相對(duì)于屏幕的左上角的橫坐標(biāo) print(’相對(duì)于屏幕的左上角的橫坐標(biāo):{}’.format(x_root)) y_root = event.y_root # 相對(duì)于屏幕的左上角的縱坐標(biāo) print(’相對(duì)于屏幕的左上角的縱坐標(biāo):{}’.format(y_root))def left_mouse_up(event): print(’鼠標(biāo)左鍵釋放’)def moving_mouse(event): print(’鼠標(biāo)左鍵按下并移動(dòng)’)def moving_into(event): print(’鼠標(biāo)進(jìn)入’)def moving_out(event): print(’鼠標(biāo)移出’)def right_mouse_down(event): print(’鼠標(biāo)右鍵按下’)def right_mouse_up(event): print(’鼠標(biāo)右鍵釋放’)def pulley_up(event): print(’滑輪向上滾動(dòng)’)def focus(event): print(’聚焦事件’)def unfocus(event): print(’失焦事件’)if __name__ == ’__main__’: win = tkinter.Tk() # 窗口 win.title(’南風(fēng)丶輕語’) # 標(biāo)題 screenwidth = win.winfo_screenwidth() # 屏幕寬度 screenheight = win.winfo_screenheight() # 屏幕高度 width = 500 height = 300 x = int((screenwidth - width) / 2) y = int((screenheight - height) / 2) win.geometry(’{}x{}+{}+{}’.format(width, height, x, y)) # 大小以及位置 label = Label(text=’標(biāo)簽’, relief=’g’, font=(’黑體’, 20)) label.pack(pady=10) label.bind(’<Button-1>’, left_mouse_down) # 鼠標(biāo)左鍵按下 label.bind(’<ButtonRelease-1>’, left_mouse_up) # 鼠標(biāo)左鍵釋放 label.bind(’<Button-3>’, right_mouse_down) # 鼠標(biāo)右鍵按下 label.bind(’<ButtonRelease-3>’, right_mouse_up) # 鼠標(biāo)右鍵釋放 label.bind(’<B1-Motion>’, moving_mouse) # 鼠標(biāo)左鍵按下并移動(dòng) label.bind(’<Enter>’, moving_into) # 鼠標(biāo)移入事件 label.bind(’<Leave>’, moving_out) # 鼠標(biāo)移出事件 label.bind(’<FocusIn>’, focus) # 聚焦事件 label.bind(’<FocusOut>’, unfocus) # 失焦事件 label.focus_set() # 直接聚焦 Entry().pack() win.mainloop()

# -*- encoding=utf-8 -*-import tkinterfrom tkinter import *def keyboard_event(event): char = event.char print(’回車 char:{}’.format(char)) key_code = event.keycode print(’回車 key code:{}’.format(key_code))def entry_enter(event): print(’輸入的內(nèi)容為:’ + entry.get())def shift_f(event): print(’SHIFT + F’) print(event.char) print(event.keycode)def num_lock(event): print(’num_lock’) print(event.char) print(event.keycode)if __name__ == ’__main__’: win = tkinter.Tk() # 窗口 win.title(’南風(fēng)丶輕語’) # 標(biāo)題 screenwidth = win.winfo_screenwidth() # 屏幕寬度 screenheight = win.winfo_screenheight() # 屏幕高度 width = 500 height = 300 x = int((screenwidth - width) / 2) y = int((screenheight - height) / 2) win.geometry(’{}x{}+{}+{}’.format(width, height, x, y)) # 大小以及位置 label = Label(text=’標(biāo)簽’, relief=’g’, font=(’黑體’, 20)) label.pack(pady=10) label.focus_set() label.bind(’<Return>’, keyboard_event) # 按下回車 label.bind(’<Shift F>’, shift_f) label.bind(’<Num_Lock>’, num_lock) entry = Entry() entry.pack() entry.bind(’<Return>’, entry_enter) # 按下回車 win.mainloop()

以上就是Python tkinter之Bind(綁定事件)的使用示例的詳細(xì)內(nèi)容,更多關(guān)于python tkinter Bind(綁定事件)的資料請(qǐng)關(guān)注好吧啦網(wǎng)其它相關(guān)文章!
相關(guān)文章:
1. python中文本字符處理的簡單方法記錄2. Python基于requests庫爬取網(wǎng)站信息3. Python-openpyxl表格讀取寫入的案例詳解4. PHP laravel實(shí)現(xiàn)導(dǎo)出PDF功能5. ASP基礎(chǔ)知識(shí)Command對(duì)象講解6. 使用Blazor框架實(shí)現(xiàn)在前端瀏覽器中導(dǎo)入和導(dǎo)出Excel7. JavaScript實(shí)現(xiàn)留言板實(shí)戰(zhàn)案例8. 資深程序員:給Python軟件開發(fā)測試的25個(gè)忠告!9. vscode運(yùn)行php報(bào)錯(cuò)php?not?found解決辦法10. 如何從Python的cmd中獲得.py文件參數(shù)

網(wǎng)公網(wǎng)安備