gpt4 book ai didi

python - 如何将 .ui 文件转换为 .py 文件

转载 作者:太空狗 更新时间:2023-10-29 17:39:02 33 4
gpt4 key购买 nike

这个 .ui 文件是由 Qt Designer 制作的。这只是一个简单的用户界面。

我浏览过的网站上执行此操作的所有命令或代码均不适用于 Windows。

最佳答案

pyuic 工具在所有平台上的工作方式完全相同:

C:\>pyuic4 -h
Usage: pyuic4 [options] <ui-file>

Options:
--version show program's version number and exit
-h, --help show this help message and exit
-p, --preview show a preview of the UI instead of generating code
-o FILE, --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
-i N, --indent=N set indent width to N spaces, tab if N is 0 [default: 4]
-w, --pyqt3-wrapper generate a PyQt v3 style wrapper

Code generation options:
--from-imports generate imports relative to '.'
--resource-suffix=SUFFIX
append SUFFIX to the basename of resource files
[default: _rc]

我怀疑“它不起作用”的原因是您尝试转换的 .ui 文件不在当前目录中。所以你需要先 cd 到那个目录:

    C:\>cd C:\path\to\my\ui\files

然后运行pyuic:

    C:\path\to\my\ui\files\>pyuic4 -o ui_form.py form.ui

关于python - 如何将 .ui 文件转换为 .py 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22266802/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com