hello, I used to write code like this in pyqt:
form, base = uic.loadUiType("score.ui")
class ScoreDlg(QDialog, form):
def __init__(self):
super(ScoreDlg, self).__init__()
self.setupUi(self)and in pyside, I only found QUiLoader.load, it returns a widget object, not a widget class. so, can pyside do this kind of work? _______________________________________________ PySide mailing list [email protected] http://lists.openbossa.org/listinfo/pyside
