我到底该怎么做呢?任何建议都会有所帮助
答案 0 :(得分:4)
它适用于不需要使用QWidgets的控制台应用程序。只需像普通应用程序一样创建它,使用QObjects,信号和插槽正常创建应用程序的其余部分。正常启动事件循环。
除了不能使用QWidgets之外,编写基于控制台的应用程序时没有任何改变。
from PyQt4 import QtCore
class Hello(QtCore.QObject):
def __init__(self, msg):
super(Hello, self).__init__()
self.msg = msg
self.timer = QtCore.QTimer(self)
self.timer.timeout.connect(self.say)
self.timer.start(500)
self.i = 0
def say(self):
print self.msg
self.i += 1
if self.i > 5:
QtCore.QCoreApplication.instance().quit()
if __name__ == "__main__":
import sys
app = QtCore.QCoreApplication(sys.argv)
hello = Hello("Hello World!")
sys.exit(app.exec_())
答案 1 :(得分:0)
通过打开文件选择器对话框(QFileDialog)启动程序。