python – 无法完全删除PyQt QGraphicsView的边框
作者:互联网
我试过在QGraphicsView上调用self.setStyleSheet(“background:transparent; border:transparent;”),但它仍然在顶部边缘留下1像素的边框.我也尝试过更换border:transparent; border-style:none;,但它也不起作用.
以下是问题的屏幕截图:
什么命令将完全删除QGraphicsView的边框?
解决方法:
您可以使用以下css规则之一:
graphicsView.setStyleSheet("border-width: 0px; border-style: solid")
要么
graphicsView.setStyleSheet("border: 0px")
你的边界应该消失.
import sys
from PyQt4.QtGui import *
class Ui(QWidget):
def __init__(self, parent=None):
QWidget.__init__(self, parent)
graphicsView = QGraphicsView()
graphicsView.setStyleSheet("border: 0px")
grid = QGridLayout()
grid.addWidget(graphicsView)
self.setLayout(grid)
app = QApplication(sys.argv)
ui = Ui()
ui.show()
sys.exit(app.exec_())
这是具有默认样式的小部件:
http://i.stack.imgur.com/gpwaW.png
现在应用了样式的小部件:
http://i.stack.imgur.com/A8K4u.png
标签:qgraphicsview,python,css,qt,pyqt 来源: https://codeday.me/bug/20190826/1733721.html