安装
$ pip install PySide2
测试是否安装成功:
import PySide2.QtCore
# Prints PySide2 version
# e.g. 5.11.1a1
print(PySide2.__version__)
# Gets a tuple with each version component
# e.g. (5, 11, 1, 'a', 1)
print(PySide2.__version_info__)
# Prints the Qt version used to compile PySide2
# e.g. "5.11.2"
print(PySide2.QtCore.__version__)
# Gets a tuple with each version components of Qt used to compile PySide2
# e.g. (5, 11, 2)
print(PySide2.QtCore.__version_info__)
资源
- Designing with Qt Creator
- Qt for Python/Tutorial
- Qt for Python
- wiki: Qt
- Web Browser Example
- PySide2.QtWidgets - Classwizard Example: Demonstrates the use of QDialog in a wizard application
- PySide2.QtWidgets - Star Delegate Example: Demonstrates Qt’s itemview architecture
- Qt for Python UsingQtProperties
- Qt for Python Signals and Slots
- How do you create a bigger QGraphicsItem shape() using QPainterPathStroker?|QPainterPathStroker Class
- PyQt5图形界面编程(目录)
- Qml组件化编程2-可拖动组件和定制窗体
- 《快速掌握PyQt5》
- 快速掌握PyQt5
- 《PyQt5高级编程实战》学会使用视图委托
- Qt之QGraphicsView实战篇
- PyQt5系列教程(87):一个简单的Graphics View小例子(类的实现介绍-3)
- PyQt5系列教程(86):一个简单的Graphics View小例子(类的实现介绍-2)
- PyQt5系列教程(84):一个简单GraphicsView例子(GraphicsView框架介绍)
- Software Develop软件开发摘录(Python&PyQt)
- 基于Qt QGraphicsView的多点触摸绘图
- PyQt5利用QPainter绘制各种图形
- 中文资料见:pyqt5_basic
- Qt教程,Qt5编程入门教程(非常详细)
- Qt 学习之路
- PySide2 是 Qt 官方提供的:使用 Qt for Python 创建用户界面
- Qt for Python Tutorials
- guietta:Qt 包装器,使创建简单的图形界面非常容易。