我准备了一个表单用于QT并转换为Python:
Form = QtGui.QWidget()
ui = Ui_Form()
ui.setupUi(Form)
Form.show()
print ui.textEdit.setObjectName(_fromUtf8("textEdit"))
sys.exit(app.exec_())
我将编写代码,列表的内容,我想使用。但是如何?
答案 0 :(得分:0)
我认为您的语法不正确这是pyqt
中的表单示例:
class MyForm(QtGui.QWidget):
def __init__(self, parent=None):
QtGui.QWidget.__init__(self, parent)
self.ui = Ui_Form()
self.ui.setupUi(self)
def execute_event(self):
pass
def execute_all_event(self):
pass
def reload_event(self):
pass
if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
myapp = MyForm()
myapp.show()
sys.exit(app.exec_())
有关详细信息,请参阅this链接!