How to put a tkinter window on top of the others?

后端 未结 7 856
北恋
北恋 2020-12-02 23:23

I\'m using Python 2 with Tkinter and PyObjC, and then I\'m using py2app.

The program is working fine, but the window starts a

相关标签:
7条回答
  • 2020-12-03 00:00

    If I take the code you give and add the first and last line you get:

    from tkinter import *
    
    root = Tk() 
    root.title("app")
    screen_width = root.winfo_screenwidth()
    screen_height = root.winfo_screenheight()
    root.geometry("550x250+%d+%d" % (screen_width/2-275, screen_height/2-125))
    root.configure(background='gold')
    root.lift()
    
    mainloop()
    

    Test it. I get the window as expected. Do you get something else? If this works then somewhere in the code you are telling it to do that. If it does the same thing as your real program then your window manager is doing it. This is the best I can do without more information.

    Edit:

    On OSX (espicially versions using aqua) tkinter's windows may be displayed behind those that are already open (this has a bug report here: http://bugs.python.org/issue9384 but has been closed as will not fix). The addition of the root.lift() command has been included to bring the window to the front of the stack in those cases and is harmless in all others.

    0 讨论(0)
  • 2020-12-03 00:03

    I modified the above solution and these 2 lines work for me on OSX. It brings the window to the front, but without making the window behave as Always on Top.

    root.call('wm', 'attributes', '.', '-topmost', True)
    root.after_idle(root.call, 'wm', 'attributes', '.', '-topmost', False)
    
    0 讨论(0)
  • 2020-12-03 00:14

    The osascript trick Arnaud P could have problems, if there is more than one process with the application title ‘Python’; additionally, it will not work for Python 3 processes (needs to be called ‘Python3’ then.

    However, I found another trick that can solve the problem by using the process id.

    import os
    script = 'tell application "System Events" \
      to set frontmost of the first process whose unix id is {pid} to true'.format(pid=os.getpid())
    os.system("/usr/bin/osascript -e '{script}'".format(script=script))
    
    0 讨论(0)
  • 2020-12-03 00:15

    For OS X 10.8.3, the combination of the answers provided by vdbuilder and user2435139 did the trick for me, i.e.

    self.root.lift()
    self.root.call('wm', 'attributes', '.', '-topmost', True)
    self.root.after_idle(self.root.call, 'wm', 'attributes', '.', '-topmost', False)
    

    called before

    self.root.mainloop()
    
    0 讨论(0)
  • 2020-12-03 00:17

    I got into same issue today. OSX LION 10.7.2. Add this code before mainloop() solves the issue.

    root.call('wm', 'attributes', '.', '-topmost', '1')
    

    but the window always remains on top of the others until you close it. For real solve, we need to make it an app bundle, with py2app.

    0 讨论(0)
  • 2020-12-03 00:18

    I know this is an old question but I found it weird that no one came up with the simple solution I had,

    app = SampleApp()
    
    app.attributes('-topmost', True)
    app.update()
    app.attributes('-topmost', False)
    
    app.mainloop()
    
    0 讨论(0)
提交回复
热议问题