8

我在 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。目前,切换复选按钮可以打开或关闭窗口。但是,我真正想要它做的是如果窗口在应用程序前面,则关闭窗口,或者如果窗口在应用程序后面,则将窗口放在前面。

希望这可以解决一些问题。

提前致谢!

4

1 回答 1

10

实际上可以检查窗口的堆叠顺序。使用 Tkinter,你必须做一些有趣的 tcl eval 来获取信息。我在 TkDoc 的Windows 和 Dialogs部分找到了答案,向下滚动直到您到达“堆叠顺序”。代码让我感到困惑,直到我开始交互式地玩弄它。我的测试代码是:

import Tkinter as tk
root = tk.Tk()
root.title('root')
one = tk.Toplevel(root)
one.title('one')
two = tk.Toplevel(root)
two.title('two')

然后我操纵窗户,使两个在上面,一个在下面,根在它们下面。在该配置中,以下怪异可以告诉您窗口的相对分层:

root.tk.eval('wm stackorder '+str(two)+' isabove '+str(root))

返回 1,表示“是的,窗口 2 位于窗口根的上方。” 而以下:

root.tk.eval('wm stackorder '+str(root)+' isabove '+str(two))

返回 0,表示“不,窗口根不在窗口 2 之上”。您还可以使用以下命令:

root.tk.eval('wm stackorder '+str(root))

它以奇怪的字符串形式返回完整的窗口堆叠顺序,如下所示:

'. .68400520L .68401032L'

当您运行命令时,这开始有意义:

str(root)
str(one)
str(two)

并找出根的内部名称为“.”,一个是“.68400520L”,两个是“.68401032L”。您向后阅读输出,root.tk.eval('wm stackorder '+str(root))所以它说两个在上面,一个在下面,根在两个下面。

于 2012-04-30T23:01:59.903 回答