会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
胸怀丶若谷
每一天都是在我身边的最后一天
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
29
30
31
32
33
34
35
36
37
···
45
下一页
2020年8月10日
Django资源网站
摘要: Django的官网:https://www.djangoproject.com/ Django Book2.0版本的中文文档:http://djangobook.py3k.cn/2.0/chapter01/ Django2.0版本的中文文档:http://python.usyiyi.cn/trans
阅读全文
posted @ 2020-08-10 16:36 胸怀丶若谷
阅读(192)
评论(0)
推荐(0)
2020年8月1日
QRadioButton
摘要: QRadioButton 该类提供了一组可供选择的按钮和文本标签,用户可以选择其中一个选项,标签用于显示对应的文本信息。单选钮是一种开关按钮,可以切换为on或者off,急checked或者unchecked,主要是为用户提供“多选一”的选择。 QRadioButton 是单选按钮默认是独占的。对于继
阅读全文
posted @ 2020-08-01 14:34 胸怀丶若谷
阅读(2971)
评论(0)
推荐(0)
QPushButton按钮的使用
摘要: 1 import sys 2 from PyQt5.QtCore import * 3 from PyQt5.QtGui import * 4 from PyQt5.QtWidgets import * 5 6 class Form(QDialog): 7 def __init__(self): 8
阅读全文
posted @ 2020-08-01 13:48 胸怀丶若谷
阅读(988)
评论(0)
推荐(0)
按钮类控件
摘要: 在任何GUI设计中,按钮都是最重要的常用的触发动作请求的方式,用来和用户进行交互操作。在PyQt中根据不同的使用场景将按钮划分为不同的表现形式。按钮的积累是QAbstractButton,提供了按钮的通用性功能。QAbstractButton类为抽象类,不能实例化,必须有其他的按钮类继承Qabstr
阅读全文
posted @ 2020-08-01 10:21 胸怀丶若谷
阅读(267)
评论(0)
推荐(0)
QTextEdit的使用
摘要: import sys from PyQt5.QtWidgets import QApplication, QWidget, QTextEdit,QVBoxLayout, QPushButton class TextEditDemo(QWidget): def __init__(self): supe
阅读全文
posted @ 2020-08-01 10:07 胸怀丶若谷
阅读(848)
评论(0)
推荐(0)
QTextEdit
摘要: QTextEdit类是一个多行文本框控件,可以显示多行文本内容,当文本框超出控件显示范围时,可以显示水平个垂直滚动条。QTextEdit不仅可以显示文本还可以显示HTML文档。 QTextEdit类中的常用方法如下: setPlainText():设置多行文本框的文本内容 toPlainText()
阅读全文
posted @ 2020-08-01 09:56 胸怀丶若谷
阅读(775)
评论(0)
推荐(0)
综合实例-文本框类部件
摘要: 1 import sys 2 from PyQt5.QtWidgets import QApplication, QLineEdit, QWidget, QFormLayout 3 from PyQt5.QtGui import QIntValidator, QDoubleValidator, QF
阅读全文
posted @ 2020-08-01 09:48 胸怀丶若谷
阅读(141)
评论(0)
推荐(0)
输入掩码
摘要: 1 """输入掩码""" 2 3 import sys 4 from PyQt5.QtWidgets import QApplication, QLineEdit, QWidget, QFormLayout 5 6 class lineEditDeom(QWidget): 7 8 def __ini
阅读全文
posted @ 2020-08-01 09:31 胸怀丶若谷
阅读(369)
评论(0)
推荐(0)
2020年7月31日
验证器
摘要: 1 """验证器""" 2 import sys 3 from PyQt5.QtWidgets import QApplication, QLineEdit, QWidget, QFormLayout 4 from PyQt5.QtGui import QIntValidator, QDoubleV
阅读全文
posted @ 2020-07-31 15:21 胸怀丶若谷
阅读(312)
评论(0)
推荐(0)
2020年7月30日
EchoMode的显示效果
摘要: 1 import sys 2 from PyQt5.QtWidgets import QApplication, QLineEdit, QWidget, QFormLayout 3 4 class lineEditDemo(QWidget): 5 def __init__(self): 6 supe
阅读全文
posted @ 2020-07-30 17:42 胸怀丶若谷
阅读(515)
评论(0)
推荐(0)
上一页
1
···
29
30
31
32
33
34
35
36
37
···
45
下一页
公告