打开新的 tkinter 窗口时,我只希望用户能够单击新窗口上的按钮。他们不应该能够从属于应用程序的其他窗口单击按钮。我将如何做到这一点?
这是我的代码片段:
def exportEFS(self):
self.exportGUI = Toplevel()
Button(self.exportGUI, text='Backup', command=self.backup).pack(padx=100,pady=5)
Button(self.exportGUI, text='Restore', command=self.restore).pack(padx=100,pady=5)
def backup(self):
self.backupWindow = Toplevel()
message = "Enter a name for your Backup."
Label(self.backupWindow, text=message).pack()
self.entry = Entry(self.backupWindow,text="enter your choice")
self.entry.pack(side=TOP,padx=10,pady=12)
self.button = Button(self.backupWindow, text="Backup",command=self.backupCallBack)
self.button.pack(side=BOTTOM,padx=10,pady=10)
在此片段中,一旦打开了 backupWindow,exportGUI 仍保持打开状态,但在打开 backupWindow 时用户不应单击“备份”或“恢复”。
谢谢!