您好,登錄后才能下訂單哦!
Python中怎么自定義對(duì)話框,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。
首先在彈出菜單中增加修改文件名菜單項(xiàng):
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行首先判斷選中的文件個(gè)數(shù),如果為1則增加【Rename】菜單項(xiàng)。當(dāng)用戶選擇【Rename】時(shí),系統(tǒng)會(huì)調(diào)用rename_current函數(shù),其實(shí)現(xiàn)如下:
def rename_current(): path, selections = selected_files() if path: for fn in selections: # 構(gòu)建頂層窗口作為對(duì)話框 rename_dlg = Toplevel(takefocus=True) # 指定窗口標(biāo)題 rename_dlg.title('Rename') # 禁止窗口尺寸調(diào)整 rename_dlg.resizable(width=False, height=False) # 構(gòu)建Frame對(duì)象以容納Label和Entry對(duì)象 # 使用Frame可以分別調(diào)整Label/Entry區(qū)域和下面的按鈕區(qū)域 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) # 構(gòu)建Frame對(duì)象以容納OK和Cancel按鈕 btn_frame = Frame(rename_dlg) btn_frame.grid(row=1, column=0, sticky='e') # 通過labmda表達(dá)式傳遞構(gòu)建按鈕控件時(shí)的對(duì)話框控件,路徑和文件名信息 # 修改后的文件名要在按下【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) # 取消按鈕直接銷毀窗口對(duì)象 cancel_btn=Button(btn_frame, text='Cancel', command=rename_dlg.destroy) cancel_btn.grid(row=0, column=1) # 限定rename_dlg接收鼠標(biāo)和鍵盤事件,這是實(shí)現(xiàn)模態(tài)對(duì)話框的關(guān)鍵。 rename_dlg.grab_set() # 使對(duì)話框相對(duì)于root窗口居中 center_window(rename_dlg, root) # 啟動(dòng)對(duì)話框主循環(huán) rename_dlg.mainloop() # 銷毀對(duì)話框窗口 rename_dlg.destroy() # 更新文件列表 select_node(None)
作者編寫了詳細(xì)的注釋行,請(qǐng)結(jié)合代碼自行理解。center_window函數(shù)的功能可以直接在其他場(chǎng)合使用,其實(shí)現(xiàn)如下:
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)
如果指定了參照窗口對(duì)象ref則將窗口調(diào)整到ref的中心位置,否則調(diào)整到屏幕中心位置。
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。