摘要: 1、介绍 树形组件。实际上树组件很多特性和表格组件类似。 2、类和初始化 class QTreeWidget(QTreeView): """ QTreeWidget(parent: QWidget = None) """ def __init__(self, parent=None): pass 快 阅读全文
posted @ 2023-04-16 23:41 挖洞404 阅读(1448) 评论(0) 推荐(0)
摘要: 1、介绍 这是pyqt的多行文本输入组件,支持html、markdown的修饰样式。 2、类和初始化 class QTextEdit(QAbstractScrollArea): """ QTextEdit(parent: QWidget = None) QTextEdit(str, parent: 阅读全文
posted @ 2023-04-16 23:40 挖洞404 阅读(310) 评论(0) 推荐(0)
摘要: 1、介绍 单行文本输入组件。 2、类和初始化 class QLineEdit(QWidget): """ QLineEdit(parent: QWidget = None) QLineEdit(str, parent: QWidget = None) """ def __init__(self, * 阅读全文
posted @ 2023-04-16 23:40 挖洞404 阅读(167) 评论(0) 推荐(0)
摘要: 1、介绍 字体下拉列表 2、类和初始化 class QFontComboBox(QComboBox): """ QFontComboBox(parent: QWidget = None) """ def __init__(self, parent=None): pass 3、属性 AllFonts 阅读全文
posted @ 2023-04-16 23:39 挖洞404 阅读(55) 评论(0) 推荐(0)
摘要: 1、介绍 下拉列表 2、类和初始化 class QComboBox(QWidget): """ QComboBox(parent: QWidget = None) """ def __init__(self, parent=None): pass 快速查询: QComboBox(parent: ty 阅读全文
posted @ 2023-04-16 23:39 挖洞404 阅读(242) 评论(0) 推荐(0)
摘要: 1、介绍 对话按钮框。提供两个按钮,进行选择。 2、创建和初始化 class QDialogButtonBox(QWidget): """ QDialogButtonBox(parent: QWidget = None) QDialogButtonBox(Qt.Orientation, parent 阅读全文
posted @ 2023-04-16 23:38 挖洞404 阅读(198) 评论(0) 推荐(0)
摘要: 1、介绍 一般按钮。 2、类和初始化 class QPushButton(QAbstractButton): """ QPushButton(parent: QWidget = None) QPushButton(str, parent: QWidget = None) QPushButton(QI 阅读全文
posted @ 2023-04-16 23:36 挖洞404 阅读(160) 评论(0) 推荐(0)
摘要: 1、介绍 该类定义了不同按钮类型的公共方法。其他按钮类型继承该类。 2、类和初始化 class QAbstractButton(QWidget): def __init__(self, parent=None): pass 3、属性 4、方法 (1)text 获取文本,类型为str (2)setTe 阅读全文
posted @ 2023-04-16 23:35 挖洞404 阅读(28) 评论(0) 推荐(0)
摘要: 1、介绍 QWidget是几乎所有pyqt显示用组件的直接或间接父类,其声明的属性和方法很具有代表性。 QWidget既可以是窗口组件,独立显示,可以容纳其他组件。也可以是一般组件,被其他组件容纳。 常用的窗口组件包括QWidget、QMainWindow和QDialog。其它组件继承QWidget 阅读全文
posted @ 2023-04-16 23:35 挖洞404 阅读(485) 评论(0) 推荐(0)
摘要: 1、介绍 QMainWindow是一个窗口组件,也是最常用的主窗口。 import sys from PyQt5.QtWidgets import QMainWindow, QApplication from PyQt5.uic import loadUi class my_window: def 阅读全文
posted @ 2023-04-16 23:33 挖洞404 阅读(249) 评论(0) 推荐(0)