I used PyQt for quite some time, and all this time I used it, there was a fairly consistent programming pattern.
- Use Qt Designer to create the .ui file.
- Create a python class of the same type as the widget created in the .ui file.
- When initializing the python class, use uic to dynamically load the .ui file into the class.
Is there a way to do something like this in PySide? I read the documentation and examples, and the closest thing I could find was an example of a calculator that previously rendered the .ui file into python code, which is the oldest way to do this in PyQt (why bake it in python when you can just parse ui ?)
python user-interface qt pyqt pyside
Brendan Abel Feb 15 '13 at 10:29 2013-02-15 10:29
source share