2020年3月18日

[python]PyQt5- QLineEdit综合案例

摘要: 综合应用 import sys from PyQt5.QtWidgets import * from PyQt5.QtGui import * from PyQt5.QtCore import * class testLinEdit_003(QWidget): def __init__(self): 阅读全文

posted @ 2020-03-18 11:46 dandanduba 阅读(697) 评论(0) 推荐(0) 编辑

[python]PyQt5- QLineEdit综合案例

摘要: 综合案例 import sys from PyQt5.QtWidgets import * from PyQt5.QtGui import * from PyQt5.QtCore import * class testLinEdit_003(QWidget): def __init__(self): 阅读全文

posted @ 2020-03-18 11:37 dandanduba 阅读(257) 评论(0) 推荐(0) 编辑

[python]PyQt5- QLineEdit和校验器

摘要: 校验器:限制输入的内容 import sys from PyQt5.QtWidgets import * from PyQt5.QtGui import * from PyQt5.QtCore import * class testLinEdit_002(QWidget): def __init__ 阅读全文

posted @ 2020-03-18 11:09 dandanduba 阅读(1191) 评论(0) 推荐(0) 编辑

[PYTHON]PyQt5 前置程序

摘要: import sys # QApplication管理GUI程序的控制流和主要设置。 # QMainWindow主窗口管理 from PyQt5.QtWidgets import QApplication,QMainWindow import Ui_text11 if __name__ == "__ 阅读全文

posted @ 2020-03-18 09:02 dandanduba 阅读(333) 评论(0) 推荐(0) 编辑

导航