上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 51 下一页
摘要: 1、介绍 下拉列表。 class QComboBox(QWidget): """ QComboBox(parent: typing.Optional[QWidget] = None) """ 注意:方法调用时,对于必要参数,不能直接使用形参名传递,而只能按顺序传递,否则会报异常崩溃。 2、项的增删改 阅读全文
posted @ 2023-07-02 03:17 挖洞404 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 1、介绍 阅读全文
posted @ 2023-07-02 03:16 挖洞404 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1、介绍 阅读全文
posted @ 2023-07-02 03:15 挖洞404 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1、介绍 阅读全文
posted @ 2023-07-02 03:14 挖洞404 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1、介绍 阅读全文
posted @ 2023-07-02 03:14 挖洞404 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 1、介绍 QPlainTextEdit文本域组件 QPlainTextEdit(parent: typing.Optional[QWidget] = None) QPlainTextEdit(text: str, parent: typing.Optional[QWidget] = None) 2、 阅读全文
posted @ 2023-07-02 03:09 挖洞404 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1、介绍 单行文本框组件。 class QLineEdit(QWidget): """ QLineEdit(parent: typing.Optional[QWidget] = None) QLineEdit(contents: str, parent: typing.Optional[QWidge 阅读全文
posted @ 2023-07-02 03:08 挖洞404 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 1、介绍 阅读全文
posted @ 2023-07-02 03:05 挖洞404 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1、介绍 阅读全文
posted @ 2023-07-02 03:05 挖洞404 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1、介绍 QMainWindow组件,是最常用的窗口组件。 import sys from PyQt5.QtWidgets import QMainWindow, QApplication from PyQt5.uic import loadUi class my_window: def __ini 阅读全文
posted @ 2023-07-02 02:57 挖洞404 阅读(72) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 51 下一页