PyQt - 使窗口处于顶层

发布于 2024-07-18 10:36:41 字数 492 浏览 2 评论 0原文

当我需要时,我需要使我的窗口处于顶层。 创建窗口的代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

携君以终年 2024-07-25 10:36:41

在窗口上调用 .show() 或 .raise() 应该使其成为焦点。

以及来自 setWindowFlags() 的文档

注意:该函数调用setParent()
更改窗口的标志时,
导致小部件被隐藏。 你
必须调用 show() 来制作小部件
再次可见..

我只是想为发现这个问题的其他人补充一点,即使在使用 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():

Note: This function calls setParent()
when changing the flags for a window,
causing the widget to be hidden. You
must call show() to make the widget
visible again..

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文