不显示在面板上
我正在尝试编写一个简单的应用程序(屏幕左上角窗口上不断变化的标签),我不希望它在面板上看到,而只在系统托盘上看到。因为它将运行很长时间时间。我怎样才能做到这一点?谢谢。
PS:我在Linux上使用python和pyqt。我尝试了 SplashScreen,但是当我单击窗口时它就消失了。我的窗口上有一个上下文菜单,所以我必须单击它。!
http://www.qtcentre.org/attachment.php?attachmentid= 4686&d=1274802065
I am trying to write a simple aplication (a continuously changing label on a window on the upper left side of the screen) and I don't want it to be seen on panel but only on system tray.Because it will run for a long time. How can I do that? Thanks.
PS: I am using python and pyqt on Linux. I tried SplashScreen but when I clicked on the window it disapears. I have a contexmenu on the window, so I must click on it.!
http://www.qtcentre.org/attachment.php?attachmentid=4686&d=1274802065
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决方案。我将窗口标志设置为“Qt.Popup”。现在面板上没有窗口。
I found the solution. I set the window flag as "Qt.Popup". Now there in no window on the panel.