我不知道你是如何使用setElementPositionAt
但它的作品。與QGraphicsScene
訣竅是,addPath
返回QGraphicsPathItem
,你需要使用它的方法setPath
修改QPainterPath
更新該項目。
一個簡單的例子:
import sys
from PySide import QtGui
class Widget(QtGui.QWidget):
def __init__(self, parent=None):
super(Widget, self).__init__(parent)
self.view = QtGui.QGraphicsView()
self.scene = QtGui.QGraphicsScene()
self.scene.setSceneRect(0,0,100,100)
self.view.setScene(self.scene)
self.button = QtGui.QPushButton('Move path')
self.button.clicked.connect(self.movePath)
layout = QtGui.QHBoxLayout()
layout.addWidget(self.view)
layout.addWidget(self.button)
self.setLayout(layout)
self.createPath()
def createPath(self):
path = QtGui.QPainterPath()
path.moveTo(25, 25)
path.lineTo(25, 75)
path.lineTo(75, 75)
path.lineTo(75, 25)
path.lineTo(25, 25)
self.pathItem = self.scene.addPath(path)
def movePath(self):
# get the path
path = self.pathItem.path()
# change some elements
# element 0: moveTo(25, 25)
# element 1: lineTo(25, 75)
# element 2: lineTo(75, 75)
# ...
path.setElementPositionAt(2, 90, 85)
path.setElementPositionAt(3, 90, 15)
# set the new path
self.pathItem.setPath(path)
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
main = Widget()
main.show()
sys.exit(app.exec_())
很多很多的感謝,這是真正的幫助。我使用的是QGraphicsPathItem,但由於某種原因,當我直接在場景中添加路徑/ setPath時,整個事情都奏效了。感謝你的例子,我也做了一些其他的改變。太棒了。再次感謝。 Avaris的 –
+1。他抽出時間來展示確切的例子。這是真正的價值。 – Alex