PyQt - 使窗口处于顶层
当我需要时,我需要使我的窗口处于顶层。 创建窗口的代码:
class Application(QtGui.QMainWindow):
def __init__(self, parent=None):
QtGui.QMainWindow.__init__(self, None, Qt.Tool | Qt.FramelessWindowHint)
self.setFocusPolicy(Qt.StrongFocus)
self.setAttribute(Qt.WA_QuitOnClose, True)
当我需要时,我这样做:
self.setWindowFlags(Qt.WindowStaysOnTopHint)
但是在运行这部分代码后,我的窗口隐藏了......我不知道,它在哪里。 但我的程序没有关闭! 帮助! 如何在需要的时候让我的窗口位于最上面?
i need to make my window top level when i need.
Code of creating window:
class Application(QtGui.QMainWindow):
def __init__(self, parent=None):
QtGui.QMainWindow.__init__(self, None, Qt.Tool | Qt.FramelessWindowHint)
self.setFocusPolicy(Qt.StrongFocus)
self.setAttribute(Qt.WA_QuitOnClose, True)
And when i need i do:
self.setWindowFlags(Qt.WindowStaysOnTopHint)
But after running this part of code my window hides... I don't know, where is it. But my program doesn't close!
Help! How can i make my window top most at need moment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在窗口上调用 .show() 或 .raise() 应该使其成为焦点。
以及来自 setWindowFlags() 的文档:
我只是想为发现这个问题的其他人补充一点,即使在使用 PyQt 时,C++ 的 Qt 文档也是一个非常好的资源,只需确保您指向适用于您的版本的 Qt C++ 文档版本PyQt 的版本(如果您使用的是 4.4,则最新的 PyQt 是针对 4.4 编译的)。
Calling .show() or .raise() on your window should make it top focus.
And from the doc for setWindowFlags():
I just wanted to add for anyone else who finds this question that the Qt doc for C++ is a very good resource even when using PyQt, just make sure you point to the version of the Qt C++ doc that applies to your version of PyQt (The latest PyQt is compiled against 4.4 if that is what you are using).