gpt4 book ai didi

python - 如何在 QWidget 周围添加边框?

转载 作者:太空宇宙 更新时间:2023-11-03 13:04:49 25 4
gpt4 key购买 nike

我正在使用 PyQT4 为潜在客户创建示例应用程序。我正在寻找某种方法在特定小部件周围放置边框。请给我一些寻找的指示。

更新:

class CentralWidget(QtGui.QWidget):

def __init__(self, mainWindow):
super(CentralWidget, self).__init__()

self.create(mainWindow)

以上代码定义了小部件。

最佳答案

根据样式表文档,QWidget 不支持 border 属性。

你必须使用类似 QFrame 的东西:

这是一个完整的例子

from PyQt4 import QtGui,QtCore

class CentralWidget(QtGui.QFrame):

def __init__(self, *args):
super(CentralWidget, self).__init__(*args)
self.setStyleSheet("background-color: rgb(255,0,0); margin:5px; border:1px solid rgb(0, 255, 0); ")

if __name__ == '__main__':
import sys
app = QtGui.QApplication(sys.argv)
mw = QtGui.QMainWindow()
w = CentralWidget(mw)
mw.setCentralWidget(w)
mw.show()
w.show()
app.exec_()

关于python - 如何在 QWidget 周围添加边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7351493/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com