11 Star 146 Fork 69

sunshe35/PySide6-codes

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
testFirst.py 265 Bytes
一键复制 编辑 原始数据 按行查看 历史
sunshe35 提交于 2022-10-01 10:26 +08:00 . '初始化'
import sys
from PySide6 import QtWidgets
'''
【简介】
第一个PyQt例子
'''
app = QtWidgets.QApplication(sys.argv)
widget = QtWidgets.QWidget()
widget.resize(360, 360)
widget.setWindowTitle("hello, PySide6")
widget.show()
sys.exit(app.exec())
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/sunshe35/PySide6-codes.git
git@gitee.com:sunshe35/PySide6-codes.git
sunshe35
PySide6-codes
PySide6-codes
master

搜索帮助