PyQt5 QSpinBox – 获取当前值
在这篇文章中,我们将看到如何获得旋转框的当前值。默认情况下,它的值是0,尽管用户可以在任何时候改变它,程序上我们使用setValue方法来改变它的值。
为了获得旋转盒的值,我们使用value方法
语法: spin.value()
参数: 它不需要参数
返回: 它返回整数,即当前值。
实施步骤 –
1.创建一个旋转框部件
2.创建一个标签来显示当前值
3.为旋转箱添加动作
4.在动作中,用value方法的帮助获得当前值
5.在标签的帮助下显示这个值。
下面是实现方法
# importing libraries
from PyQt5.QtWidgets import *
from PyQt5 import QtCore, QtGui
from PyQt5.QtGui import *
from PyQt5.QtCore import *
import sys
class Window(QMainWindow):
def __init__(self):
super().__init__()
# setting title
self.setWindowTitle("Python ")
# setting geometry
self.setGeometry(100, 100, 600, 400)
# calling method
self.UiComponents()
# showing all the widgets
self.show()
# method for widgets
def UiComponents(self):
# creating spin box
self.spin = QSpinBox(self)
# setting geometry to spin box
self.spin.setGeometry(100, 100, 100, 40)
# adding action to the spin box
self.spin.valueChanged.connect(self.show_result)
# creating label show result
self.label = QLabel(self)
# setting geometry
self.label.setGeometry(100, 200, 200, 40)
# method called by spin box
def show_result(self):
# getting current value
value = self.spin.value()
# setting value of spin box to the label
self.label.setText("Value : " + str(value))
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
window.show()
# start the app
sys.exit(App.exec())