1. 首页
  2. 数据库
  3. 其它
  4. PyQt5基本窗口控件—–QRadioButton

PyQt5基本窗口控件—–QRadioButton

上传者: 2020-12-31 17:46:42上传 PDF文件 30.38KB 热度 22次
PyQt5学习之路,点击有pyqt5学习笔记 QRadioButton类提供了一组可供选择的按钮和文本标签,为用户提供多选一的操作。 import sys from PyQt5.QtWidgets import * class QRadioButtonDemo(QWidget): def __init__(self): super(QRadioButtonDemo, self).__init__() self.initUI() def initUI(self): self.setWindowTitle('QRdaioButton
下载地址
用户评论