PyQt5 QSpinBox – 获取当前值
在本文中,我们将了解如何获取旋转框的当前值。默认情况下,它的值为 0,尽管用户可以随时更改它,并且我们以编程方式使用setValue
方法来更改它的值。
为了得到旋转框的值,我们使用value
方法
Syntax : spin.value()
Argument : It takes no argument
Return : It returns integer i.e current value
实施步骤——
1.创建一个旋转框小部件
2.创建一个标签来显示当前值
3. 为旋转框添加动作
4.在action内部通过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())
输出 :