PyQt5组件之QSpinBox
Posted 在奋斗的大道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PyQt5组件之QSpinBox相关的知识,希望对你有一定的参考价值。
QSpinBox 简介
QSPINBox是一个计数器控件,允许用户选择一个整数值通过单击向上向下或者按键盘上的上下键来增加减少当前显示的值,当然用户也可以输入值在默认情况下,QSpinBox的取值范围是(0-99),每次改变的步长是1。QSpinBox类和QDoubleSpinbox类均派生自QAbstractSpinBox类,QSpinBox用于处理整数值,QDoubleSpinBox则用于处理浮点数值,他们之间的区别就是处理数据的类型不同,其他功能基本相同,QDoubleSpinBox的默认精度是两位小数,但可以通过setDecimals()来改变。
QSpinBox类中的常用方法
方法 | 描述 |
setMinimum() | 设置计数器的下界 |
setMaximum() | 设置计数器的上界 |
setRange() | 设置计数器的最大值,最小值,步长值 |
setValue() | 设置计数器的当前值 |
Value() | 返回计数器的当前值 |
singleStep() | 设置计数器的步长值 |
QSpinBox类中的常用信号
信号 | 描述 |
valueChanged | 计数器值变更事件 |
QSpinBox效果截图:
功能描述:点击QSpinBox计数器,更新文本相关数据信息。
PyQt 模型设计:
PyQt 设计器截图:
*.ui 转换为*.py 代码
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'untitled5.ui'
#
# Created by: PyQt5 UI code generator 5.15.4
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
import sys
from PyQt5 import QtCore, QtGui, QtWidgets
from PyQt5.QtWidgets import QApplication, QMainWindow
class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(800, 600)
self.centralwidget = QtWidgets.QWidget(MainWindow)
self.centralwidget.setObjectName("centralwidget")
self.widget = QtWidgets.QWidget(self.centralwidget)
self.widget.setGeometry(QtCore.QRect(80, 110, 92, 22))
self.widget.setObjectName("widget")
self.horizontalLayout = QtWidgets.QHBoxLayout(self.widget)
self.horizontalLayout.setContentsMargins(0, 0, 0, 0)
self.horizontalLayout.setObjectName("horizontalLayout")
self.label = QtWidgets.QLabel(self.widget)
self.label.setObjectName("label")
self.horizontalLayout.addWidget(self.label)
self.spinBox = QtWidgets.QSpinBox(self.widget)
self.spinBox.setObjectName("spinBox")
self.horizontalLayout.addWidget(self.spinBox)
# 计算器添加数值变更事件监听器
self.spinBox.valueChanged.connect(self.Valuechange)
MainWindow.setCentralWidget(self.centralwidget)
self.retranslateUi(MainWindow)
QtCore.QMetaObject.connectSlotsByName(MainWindow)
def retranslateUi(self, MainWindow):
_translate = QtCore.QCoreApplication.translate
MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow"))
self.label.setText(_translate("MainWindow", "计数值:0"))
def Valuechange(self):
# 显示当前计数器地数值
self.label.setText('当前值:' + str(self.spinBox.value()))
if __name__ == '__main__':
app = QApplication(sys.argv)
MainWindow = QMainWindow()
ui = Ui_MainWindow()
ui.setupUi(MainWindow)
MainWindow.show()
sys.exit(app.exec_())
需要向PyUIC 生成的代码,添加如下代码片段:
重点实现QSpinBox事件绑定
# 计算器添加数值变更事件监听器
self.spinBox.valueChanged.connect(self.Valuechange)
def Valuechange(self):
# 显示当前计数器地数值
self.label.setText('当前值:' + str(self.spinBox.value()))
以上是关于PyQt5组件之QSpinBox的主要内容,如果未能解决你的问题,请参考以下文章