QtforPython 快速⼊门
⼀.搭建环境1.python官⽹下载python3.7.4 安装2.安装PySide2pip install PySide2
3.安装qt 5.13
参考
⼆、创建demo 程序
1.打开qt 5.13,创建Qt for Python - Windows 程序
violin读音发音
2.在main.py⾥追加如下代码
追加导⼊
定义MyWidget类 # This Python file uses the following encoding: utf-8 import sys import random from PySide2 import QtCore, QtWidgets, QtGui 1
2
3sql server数据库端口号是多少
4
添加main函数,显⽰窗⼝class MyWidget(QtWidgets.QWidget): def __init__(self): super().__init__() self.hello = ["Hallo Welt", "Hei maailma", "Hola Mundo", "Привет мир"] self.button = QtWidgets.QPushButton("Click me!") = QtWidgets.QLabel("Hello World") setAlignment(QtCore.Qt.AlignCenter) self.layout = QtWidgets.QVBoxLayout() self.layout.) self.layout.addWidget(self.button) self.setLayout(self.layout) self.t(self.magic) def magic(self): setText(random.choice(self.hello))1
python入门教程app>网页视频播放代码2
3
4
5
6
7
8
9
10
11
12
13
14
15
16laravel 路由
17
18
19
20if __name__ == "__main__": app = QtWidgets.QApplication([]) widget = MyWidget() size(800, 600) widget.show() _())
1
2
3
4
5
6
7销售smart原则经典案例
8
3.运⾏截图
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论