RuntimeError:内部C ++对象(PySide.QtGui.QWidget)已删除

时间:2019-04-01 08:47:10

标签: python pyside

我正在使用PySide在MotionBuilder上使用UI,但是得到了这个包

def getMobuWindow():
    parent = QtGui.QApplication.activeWindow()
    while parent.parentWidget() is not None:
        parent = parent.parentWidget()
    return parent
getMobuWindow()

RuntimeError: Internal C++ object (PySide.QtGui.QWidget) already deleted.

我检查了一些相关主题,但找不到解决方法。有人知道吗?

0 个答案:

没有答案