可能重复:
How can I hide the console window in a PyQt app running on Windows?
我做了一个简单的应用程序,打开了一个QWebView,但除了应用程序窗口之外,还打开了Windows控制台窗口。
这可能是什么原因?
import sys
import socket
from PyQt4 import QtCore, QtGui
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtWebKit import QWebView
class AppWindow(QtGui.QWidget):
def __init__(self, parent=None):
QtGui.QWidget.__init__(self, parent)
self.setGeometry(300, 300, 200, 25)
self.setWindowTitle('TrayIP')
self.create_sys_tray()
self.hostname = socket.gethostname()
self.ip = socket.gethostbyname(self.hostname)
self.label = QLabel("IP: " + self.ip, self)
self.label.setFont(QtGui.QFont('Helvetica', 14))
self.timer = QTimer()
self.connect( self.timer, QtCore.SIGNAL('timeout()'), self.timerupdate)
self.timer.start(10000)
def timerupdate(self):
self.web = QWebView()
self.web.load( QUrl('http://xxx') )
def create_sys_tray(self):
self.sysTray = QtGui.QSystemTrayIcon(self)
self.sysTray.setIcon( QtGui.QIcon('ico.ico') )
self.sysTray.setVisible(True)
self.connect(self.sysTray, QtCore.SIGNAL("activated(QSystemTrayIcon::ActivationReason)"), self.on_sys_tray_activated)
self.sysTrayMenu = QtGui.QMenu(self)
act = self.sysTrayMenu.addAction("FOO")
def on_sys_tray_activated(self, reason):
if self.isVisible ():
self.setVisible(False)
else:
self.setVisible(True)
app = QtGui.QApplication(sys.argv)
window = AppWindow()
window.show()
sys.exit(app.exec_())
答案 0 :(得分:6)
使用pythonw.exe而不是python.exe
答案 1 :(得分:3)
将文件命名为.pyw而不是.py
答案 2 :(得分:2)
在默认的Windows安装中,.pyw文件在没有控制台窗口的情况下打开(因为它们加载了pythonw),并且.py文件在控制台中加载。所以是的,重命名为.pyw可能是最简单的解决方案。
另外 - 如果您正在使用py2exe进行编译,则必须将“console =”更改为“window =”