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?
|
|
another way to use .ui in your code is:
both approaches are good. Do not forget, that if you use QT recource files (extremely useful) for icons and so one, you must compile it too:
Note, when uic compiles interface, it adds 'import images_rc' at the end of .py file, so you must compile recources into the file with this name (yekk...), or rename it in generated code (boo..). If you'd fugure out a workaround for it, tell me, plz :) |
|||
|
|
|
You need to generate a python file from your ui file with the pyuic tool (site-packages\pyqt4\bin)
with pyqt4
Then you can import the form1 into your script. |
|||
|
|
|
I found this article very helpful. http://talk.maemo.org/archive/index.php/t-43663.html I'll briefly describe the actions to create and change .ui file to .py file, taken from that article.
The file is created and saved, now we will Generate the Python code from it using pyuic!
Hope this helps someone. |
||||
|
|
|
You can convert your .ui files to an executable python file using the below command..
Now you can straightaway execute the python file as
You can import this file and you can use it. |
|||
|
|