码迷,mamicode.com
首页 > 其他好文 > 详细

pyqy获得值得用法整理

时间:2016-07-06 18:24:23      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:

设定值:
_________________________________________________
大段文本
self.textEdit.setPlainText(text) 
静态label
self.lbl.setText("PyQt4")
设定静态label初始值
self.lbl.setText("hello"+self.singlelineEdit.text())
字体
self.label.setFont(font)
修改颜色
self.label.setStyleSheet("QWidget { background-color: %s }" % color.name())



获取值:
_________________________________________________
单行输入框
self.singlelineEdit.text()
单选radiobox,单选按钮本来就没有value的
self.radiobutton.isCheck()
滑动取值spinbox
self.spinbox.value()
获得日期值
thedate=self.calendarWidget.selectedDate()
日期值转化为string
thedatestring=str(thedate.toPyDate())
下拉列表combobox值的初始化
    def __init__(self, parent = None):
        self.typelist=[first, second, third]
        self.addcommobox()
        
    def addcommobox(self):
        for i in self.typelist:
            self.typecomboBox.addItem(i)
下拉列表combobox值
self.typecomboBox.currentText()
下拉列表combobox的index
self.typecomboBox.currentIndex()

 

pyqy获得值得用法整理

标签:

原文地址:http://www.cnblogs.com/test404/p/5647611.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!