I’n new in python and QT4, so I want some help.
I create a form in QT4 and compile with pyuic4. it create an form.py
I want to modify the value of the line edit dynamiclly with code. I put this code in the form.py but never happen:
in def retranslateUi(self, Dialog):
I put:
self.pointStartId.setText(QtGui.QApplication.translate("Dialog", "example", None, QtGui.QApplication.UnicodeUTF8))
how can I do that?
↧