2 Star 3 Fork 0

精金电子/明日方舟寻访统计工具

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.py 754 Bytes
一键复制 编辑 原始数据 按行查看 历史
精金电子 提交于 2021-11-17 22:54 . 加了软件ico
import sys
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
from PyQt5.QtWebEngineWidgets import *
class index_mainWindow(QMainWindow):
def __init__(self):
super(index_mainWindow, self).__init__()
self.setWindowIcon(QIcon('images/ico.jpg'))
self.setWindowTitle('明日方舟寻访统计工具') # 窗口标题
self.setGeometry(250, 150, 1375, 750) # 窗口的大小和位置设置
self.browser = QWebEngineView()
self.browser.load(QUrl(QFileInfo("./html/index.html").absoluteFilePath()))
self.setCentralWidget(self.browser)
if __name__ == '__main__':
app = QApplication(sys.argv)
win = index_mainWindow()
win.show()
app.exit(app.exec_())
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/maicent1/arknights_gacha.git
[email protected]:maicent1/arknights_gacha.git
maicent1
arknights_gacha
明日方舟寻访统计工具
master

搜索帮助