我正在为我正在制作的脚本制作一个 GUI,经过研究我发现pyqt会很有帮助。我现在已经在pyqt中制作了一个没有工作按钮的 GUI,但想查看代码。
我打开 cmd.exe 并输入:
pyuic4 project.ui -o python.py
它为我创建了一个python.py脚本,它向我展示了我需要的所有脚本,但是当我通过 IDLE 或命令提示符运行它时,它显示它正在运行,但没有打开任何 GUI。难道我做错了什么?
另外,pyqt是否适合用于为 windows 创建简单的 GUI,还是用于移动开发?
这是我要编译和运行的代码片段
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
def _fromUtf8(s):
return s
try:
_encoding = QtGui.QApplication.UnicodeUTF8
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig)
class Ui_FileHash(object):
def setupUi(self, FileHash):