我在 python 2.7 和 tkinter 中编写了一个应用程序。我创建了一个带有几个按钮的工具栏,这些按钮打开了显示各种选项的相应顶部窗口。我使用带有“工具按钮”样式的 ttk.Checkbutton 作为指示器来显示选项窗口是打开还是关闭。
问题是如果选择了另一个窗口,选项窗口将回到后面。目前,如果再次选择工具按钮,选项窗口将关闭。但是,我只想在窗口位于顶部时关闭它。如果选项窗口不在顶部,我希望窗口移到前面。
我工作的一些代码:
class MainWindow:
def __init__(self,application):
self.mainframe=tk.Frame(application)
application.geometry("900x600+30+30")
self.otherOptionsSelect=tk.IntVar()
self.otherOptions_Button=ttk.Checkbutton(application,style='Toolbutton',variable=self.otherOptionsSelect,
onvalue=1, offvalue=0,image=self.optionsIcon, command=self.otherOptions)
def otherOptions(self):
if self.otherOptionsSelect.get()==0:
self.otherOptions.destroy()
return
self.otherOptions=tk.Toplevel()
self.otherOptions.title("IsoSurface Options")
self.otherOptions.geometry("200x165+"+str(int(application.winfo_x())+555)+"+"+str(int(application.winfo_y())+230))
self.otherOptApply_button=ttk.Button(self.otherOptions,text="Apply",command=self.showFrame)
self.otherOptApply_button.place(x=20,y=80,width=50,height=30)
self.otherOptClose_button=ttk.Button(self.otherOptions,text="Close",command=self.otherOptionsClose)
self.otherOptClose_button.place(x=80,y=80,width=50,height=30)
def otherOptionsClose(self):
self.otherOptionsSelect.set(0)
self.otherOptions.destroy()
这是我编写的整个应用程序的图片:
在上图中,每个窗口都有各自的 ttk.checkbutton。目前,切换复选按钮可以打开或关闭窗口。但是,我真正想要它做的是如果窗口在应用程序前面,则关闭窗口,或者如果窗口在应用程序后面,则将窗口放在前面。
希望这可以解决一些问题。
提前致谢!