Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经实现了我在另一个问题中找到的代码,我想知道它为什么会起作用。
这是在 mac 中使 Tkinter 窗口最顶部的代码,然后在它空闲时不会(如果这有意义的话)
root.lift() root.call('wm', 'attributes', '.', '-topmost', True) root.after_idle(root.call, 'wm', 'attributes', '.', '-topmost', False)
例如,我如何让它在 Windows 中工作?