使 Tkinter 窗口显示在任务栏中
我希望我的程序显示在任务栏中,但仍然没有传统的 Windows 边框。我该怎么办?我知道 self.overrideredirect(1)
,但是这会将我的程序从任务栏中删除。
这是针对 Windows 7 的。
I want a program of mine to show up in the taskbar, but still not have the traditional windows boarder. How can I go about this? I know of self.overrideredirect(1)
, however this removes my program from the taskbar.
This is for Windows 7.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我并不认为这是“正确”的方法,但看看这是否适合您:
I make no claim about this being the 'correct' way to do it, but see if this works for you:
您可以在根对象下添加一个顶级窗口,使根不可见,然后处理图标事件以隐藏或显示顶级窗口。
You could add a toplevel window under the root object, make root invisible and then handle the icon events to hide or show the toplevel window.