PyQt4 创建不可调整大小的窗口
由于某种原因,我使用 PyQt4 创建的任何小部件都无法调整大小。当我尝试用鼠标调整窗口大小时,没有任何反应。以下简单的程序在我的机器上重现了这种行为:
from PyQt4.QtGui import QMainWindow, QApplication
from sys import argv
app = QApplication(argv)
mw = QMainWindow()
app.exec_()
我通常使用 C++ Qt 库进行开发,我希望它能够工作。更重要的是,等效的 C++ 应用程序的行为方式完全相同。
什么可能导致这种情况?
For some reason, any widget I create using PyQt4 cannot be resized. When i try and resize the window with the mouse nothing happens. The following simple program reproduces this behavior on my machine:
from PyQt4.QtGui import QMainWindow, QApplication
from sys import argv
app = QApplication(argv)
mw = QMainWindow()
app.exec_()
I usually develop using the C++ Qt libraries, where I would expect this to work. What's more an equivilent C++ application behaves in exactly the same way.
What could cause this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
执行前
mw.setGeometry(0, 0, 640, 480)
。它在屏幕上定位窗口(前两个参数),调整其大小(第 3 和第 4 个参数)并启用调整大小。
mw.setGeometry(0, 0, 640, 480)
before exec.it locates window on screen (firs two parametrs), resizes it (3 and 4 parametr) and enables resizing.
我找到了解决方案 - 事实证明我以一种相当......独特的方式破坏了我的
compiz
设置,这导致 Qt 应用程序无法正确调整大小。不过还是感谢所有回答的人!I have found the solution - it turns out I had broken my
compiz
settings in a rather... unique manner, which caused Qt apps to not resize correctly. Thanks to everyone who answered however!