您好,登錄后才能下訂單哦!
Python中怎么自定義對話框,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
首先在彈出菜單中增加修改文件名菜單項:
def rbutton_down(event): iid = list_view.identify_row(event.y) if iid: if iid not in list_view.selection(): list_view.selection_set(iid) list_view.focus(iid) path, selections = selected_files() if path: menu = Menu(list_view, tearoff=False) menu.add_command(label='Open', command=open_current) if len(list(selections))==1: menu.add_command(label='Rename', command=rename_current) menu.add_command(label='Delete', command=delete_current) menu.post(event.x_root, event.y_root)
代碼11行首先判斷選中的文件個數,如果為1則增加【Rename】菜單項。當用戶選擇【Rename】時,系統會調用rename_current函數,其實現如下:
def rename_current(): path, selections = selected_files() if path: for fn in selections: # 構建頂層窗口作為對話框 rename_dlg = Toplevel(takefocus=True) # 指定窗口標題 rename_dlg.title('Rename') # 禁止窗口尺寸調整 rename_dlg.resizable(width=False, height=False) # 構建Frame對象以容納Label和Entry對象 # 使用Frame可以分別調整Label/Entry區域和下面的按鈕區域 fn_frame = Frame(rename_dlg) fn_frame.grid(row=0,column=0) Label(fn_frame, text='File Name:').grid(row=0, column=0) fn_var = StringVar() fn_var.set(fn) fn_entry = Entry(fn_frame, textvariable=fn_var) fn_entry.grid(row=0, column=1) # 構建Frame對象以容納OK和Cancel按鈕 btn_frame = Frame(rename_dlg) btn_frame.grid(row=1, column=0, sticky='e') # 通過labmda表達式傳遞構建按鈕控件時的對話框控件,路徑和文件名信息 # 修改后的文件名要在按下【OK】按鈕是通過fn_var.get獲取。 ok_btn = Button(btn_frame, text='OK', command=(lambda w=rename_dlg,p=path,s=fn: rename_ok(w,p,s,fn_var.get()))) ok_btn.grid(row=0, column=0) # 取消按鈕直接銷毀窗口對象 cancel_btn=Button(btn_frame, text='Cancel', command=rename_dlg.destroy) cancel_btn.grid(row=0, column=1) # 限定rename_dlg接收鼠標和鍵盤事件,這是實現模態對話框的關鍵。 rename_dlg.grab_set() # 使對話框相對于root窗口居中 center_window(rename_dlg, root) # 啟動對話框主循環 rename_dlg.mainloop() # 銷毀對話框窗口 rename_dlg.destroy() # 更新文件列表 select_node(None)
作者編寫了詳細的注釋行,請結合代碼自行理解。center_window函數的功能可以直接在其他場合使用,其實現如下:
def center_window(wnd, ref): wnd.update() width = wnd.winfo_width() height = wnd.winfo_height() if ref: ref_width = ref.winfo_width() ref_height = ref.winfo_height() x = ref.winfo_x() y = ref.winfo_y() size = '%dx%d+%d+%d' % (width, height, x + (ref_width - width) / 2, y+(ref_height - height) / 2) else: s_width = wnd.winfo_screenwidth() s_height = wnd.winfo_screenheight() size = '%dx%d+%d+%d' % (width, height, (s_width - width) / 2, (s_height - height) / 2) wnd.geometry(size)
如果指定了參照窗口對象ref則將窗口調整到ref的中心位置,否則調整到屏幕中心位置。
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。