The use of PYRCC4 and Pyuic4 in PYQT4

Source: Internet
Author: User

Wrote a PYQT4 program, designed an interface with Desiger, using QT's RCC system. So the study of the use of PYRCC4 and pyuic4, in fact, is very simple, pyrcc4-o ui_form.py form.ui,pyuic4 the same usage. With a couple of UI, a row of rows is troublesome, so look at the Python help to write a secondary build script:

Import OS
For Root, dirs, the files in Os.walk ('. '):
For file in Files:
If File.endswith ('. UI '):
Os.system (' pyuic4-o ui_%s.py%s '% (File.rsplit ('. ', 1) [0], file)
Elif File.endswith ('. QRC '):
Os.system (' pyrcc4-o%s_rc.py%s '% (File.rsplit ('. ', 1) [0], file)

OK, just execute the script in the current directory.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.