我已经实现了我找到的代码in another question,我想知道它为什么会有效。
这是使得Tkinter窗口在mac中最顶层的代码,然后在它空闲时不会(如果这是有意义的话)
root.lift()
root.call('wm', 'attributes', '.', '-topmost', True)
root.after_idle(root.call, 'wm', 'attributes', '.', '-topmost', False)
例如,如何让它在Windows中运行?