So if I go into QtDesigner and build a UI, it\'ll be saved as a .ui file. How can I make this as a python file or use this in python?
In order to compile .ui files to .py files, I did:
python pyuic.py form1.ui > form1.py
Att.