久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

Python tkinter之Bind(綁定事件)的使用示例

瀏覽:149日期:2022-06-28 11:29:50
1、綁定鼠標事件并獲取事件屬性

# -*- encoding=utf-8 -*-import tkinterfrom tkinter import *def left_mouse_down(event): print(’鼠標左鍵按下’) # 事件的屬性 widget = event.widget print(’觸發事件的組件:{}’.format(widget)) print(’組件顏色:{}’.format(widget.cget(’bg’))) widget_x = event.x # 相對于組件的橫坐標x print(’相對于組件的橫坐標:{}’.format(widget_x)) widget_y = event.y # 相對于組件的縱坐標y print(’相對于組件的縱坐標:{}’.format(widget_y)) x_root = event.x_root # 相對于屏幕的左上角的橫坐標 print(’相對于屏幕的左上角的橫坐標:{}’.format(x_root)) y_root = event.y_root # 相對于屏幕的左上角的縱坐標 print(’相對于屏幕的左上角的縱坐標:{}’.format(y_root))def left_mouse_up(event): print(’鼠標左鍵釋放’)def moving_mouse(event): print(’鼠標左鍵按下并移動’)def moving_into(event): print(’鼠標進入’)def moving_out(event): print(’鼠標移出’)def right_mouse_down(event): print(’鼠標右鍵按下’)def right_mouse_up(event): print(’鼠標右鍵釋放’)def pulley_up(event): print(’滑輪向上滾動’)def focus(event): print(’聚焦事件’)def unfocus(event): print(’失焦事件’)if __name__ == ’__main__’: win = tkinter.Tk() # 窗口 win.title(’南風丶輕語’) # 標題 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=’標簽’, relief=’g’, font=(’黑體’, 20)) label.pack(pady=10) label.bind(’<Button-1>’, left_mouse_down) # 鼠標左鍵按下 label.bind(’<ButtonRelease-1>’, left_mouse_up) # 鼠標左鍵釋放 label.bind(’<Button-3>’, right_mouse_down) # 鼠標右鍵按下 label.bind(’<ButtonRelease-3>’, right_mouse_up) # 鼠標右鍵釋放 label.bind(’<B1-Motion>’, moving_mouse) # 鼠標左鍵按下并移動 label.bind(’<Enter>’, moving_into) # 鼠標移入事件 label.bind(’<Leave>’, moving_out) # 鼠標移出事件 label.bind(’<FocusIn>’, focus) # 聚焦事件 label.bind(’<FocusOut>’, unfocus) # 失焦事件 label.focus_set() # 直接聚焦 Entry().pack() win.mainloop()

Python tkinter之Bind(綁定事件)的使用示例

2、綁定鍵盤事件并獲取事件屬性

# -*- 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(’輸入的內容為:’ + 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(’南風丶輕語’) # 標題 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=’標簽’, 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(綁定事件)的使用示例

以上就是Python tkinter之Bind(綁定事件)的使用示例的詳細內容,更多關于python tkinter Bind(綁定事件)的資料請關注好吧啦網其它相關文章!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 新和县| 封开县| 昌乐县| 红河县| 临澧县| 文安县| 青田县| 石嘴山市| 隆尧县| 华阴市| 宿州市| 景泰县| 呈贡县| 瓦房店市| 屯门区| 泌阳县| 泸水县| 拜城县| 宜丰县| 荣昌县| 宁强县| 赣榆县| 开平市| 太白县| 石河子市| 辽宁省| 运城市| 石阡县| 阿克陶县| 磴口县| 邯郸市| 尚义县| 翁牛特旗| 拜泉县| 黄大仙区| 惠州市| 宿迁市| 康定县| 池州市| 沿河| 康马县|