Tkinter 窗口分层
我有两个 Tkinter 窗口,如何使一个窗口始终位于另一个窗口之上?
I have two Tkinter windows, How do I keep one window always on top of the other?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有两个 Tkinter 窗口,如何使一个窗口始终位于另一个窗口之上?
I have two Tkinter windows, How do I keep one window always on top of the other?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
AFAIK 你无能为力。根据官方tk文档,
您能做的最好的事情就是定期将一扇窗户抬高到另一扇窗户之上。我不建议这样做,因为它可能会产生一些真正灾难性的副作用(例如,使用户很难或不可能移动始终低于最顶层窗口的窗口)
There isn't anything you can do AFAIK. According to the official tk documentation,
About the best you could do is to periodically raise one window above the other. I don't recommend that because it may have some really disastrous side effects (for example, making it difficult or impossible for the user to move the window that is always lower than the top-most one)