【发布时间】:2017-05-24 14:41:03
【问题描述】:
我尝试使用一个图标:
- https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html
- PyQt4 set windows taskbar icon
但它没有显示在窗口上:
#! /usr/bin/env python
# -*- coding: utf-8 -*-
#
import sys
from PyQt4.QtGui import *
# Create an PyQT4 application object.
a = QApplication(sys.argv)
# The QWidget widget is the base class of all user interface objects in PyQt4.
w = QWidget()
# Set window size.
w.resize(820, 240)
# Set window title
w.setWindowTitle("Hello World!")
# https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html
undoicon = QIcon.fromTheme("camera-web")
w.setWindowIcon(undoicon)
# Show window
w.show()
sys.exit(a.exec_())
我使用的是 Windows 10:
- Anaconda
conda --version->conda 4.3.18 - Python
python --version->Python 2.7.13 :: Anaconda custom (32-bit)
【问题讨论】: