如何从QtDesigner文件生成python代码?
我找到pyside-uic,但是找不到语法示例。
我用spyder运行win7和pythonxy。

最佳答案

pyside-uic与pyuic4大致相同,因此手册页中指定:

Usage:
        pyside-uic [options] <ui-file>

Options:
    --version
        show program's version number and exit

    -h,--help
        show this help message and exit

    -oFILE,--output=FILE
        write generated code to FILE instead of stdout

    -x,--execute
        generate extra code to test and display the class

    -d,--debug
        show debug output

    -iN,--ident=N
        set indent width to N spaces, tab if N is 0 (default: 4)

我通常这样使用它:
pyside-uic -o output.py input.ui

关于python - 用pyside-uic生成Python代码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4442286/

10-12 21:58