1.QLineEdit
1
2
|
QLineEdit.text()
#输出str类型
|
2.QCheckBox
1
2
3
4
5
|
QCheckBox.checkState()
#状态 选定:
int (QCheckBox.checkState()) = = 2
#未选定:
int (QCheckBox.checkState()) = = 0
|
3.QComboBox
1
2
|
QComboBox.currentText()
#输出str类型
|
4,QDateEdit
1
2
3
4
5
6
|
QDateEdit.date()
"""
输出QCore.QDate.(yyyy,MM,dd)
目前只想到一个笨办法进行判断,先转换为儒略日
QDateEdit.date().toJulianDay()
之后使用jdcal模块转换
|
1
2
3
4
|
jd = int (QDateEdit.date().toJulianDay() - 2400000.5 )
gcal = jd2gcal( 2400000.5 ,jd)
转换为 2017 8 29 或 2017 10 9 这样的格式
"""
|
以上这篇PyQt5组件读取参数的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/sinat_21427221/article/details/77744006