1 Star 1 Fork 0

Michael Ji/MathGenerator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.py 559 Bytes
一键复制 编辑 原始数据 按行查看 历史
Michael Ji 提交于 2020-02-23 21:11 . 1, 修改app的icon
import sys
from PyQt5 import QtGui
from PyQt5.QtWidgets import QApplication
from PyQt5.QtCore import QTranslator
from mainDlg import MainDlg
if __name__ == "__main__":
# 程序入口main函数,初始化app,启动主窗口
App = QApplication([])
trans = QTranslator()
ret = trans.load('zh_CN.qm')
App.installTranslator(trans)
dialog = MainDlg()
icon = QtGui.QIcon()
icon.addPixmap(QtGui.QPixmap(":/img/app"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
dialog.setWindowIcon(icon)
dialog.show()
sys.exit(App.exec_())
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/jibintao/MathGenerator.git
git@gitee.com:jibintao/MathGenerator.git
jibintao
MathGenerator
MathGenerator
master

搜索帮助