不同的WM和使窗户最顶层

时间:2013-11-13 00:55:27

标签: python windows macos tkinter topmost

我已经实现了我找到的代码in another question,我想知道它为什么会有效。

这是使得Tkinter窗口在mac中最顶层的代码,然后在它空闲时不会(如果这是有意义的话)

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

例如,如何让它在Windows中运行?

0 个答案:

没有答案