如何在不点击pyqt5中的按钮的情况下计算值?

时间:2018-05-23 04:05:42

标签: pyqt5

每当我输入数据时,如何自动计算净价(Price * (1 - discount))?我可以按下按钮,但我想在输入数据时这样做。

见下图。

enter image description here

提前谢谢!

1 个答案:

答案 0 :(得分:0)

首先,您似乎正在使用QLineEdit进行输入。因为你想输入整数,我建议使用QSpinBox或QDoubleSpinBox,它们用于输入整数。

我构建了一个像QtCreator一样的GUI,并将我的Raspberry Pi上的pyuic5 -x gui.ui -o gui.py转换为Python。

您只需要将SpinBox的值更改与给出净价的函数相关联。为此,请参阅以下代码:

# -*- coding: utf-8 -*-

from PyQt5 import QtCore, QtGui, QtWidgets

class Ui_MainWindow(object):
    def setupUi(self, MainWindow):
        MainWindow.setObjectName("MainWindow")
        MainWindow.resize(800, 415)

        self.centralwidget = QtWidgets.QWidget(MainWindow)
        self.centralwidget.setObjectName("centralwidget")

        self.label = QtWidgets.QLabel(self.centralwidget)
        self.label.setGeometry(QtCore.QRect(30, 40, 201, 81))
        font = QtGui.QFont()
        font.setPointSize(26)
        self.label.setFont(font)
        self.label.setObjectName("label")

        self.label_2 = QtWidgets.QLabel(self.centralwidget)
        self.label_2.setGeometry(QtCore.QRect(30, 140, 201, 81))
        font = QtGui.QFont()
        font.setPointSize(26)
        self.label_2.setFont(font)
        self.label_2.setObjectName("label_2")

        self.label_3 = QtWidgets.QLabel(self.centralwidget)
        self.label_3.setGeometry(QtCore.QRect(30, 260, 201, 81))
        font = QtGui.QFont()
        font.setPointSize(26)
        self.label_3.setFont(font)
        self.label_3.setObjectName("label_3")

        self.label_netprice = QtWidgets.QLabel(self.centralwidget)
        self.label_netprice.setGeometry(QtCore.QRect(260, 282, 421, 41))
        self.label_netprice.setStyleSheet("background-color: rgb(255, 255, 255);")
        self.label_netprice.setText("")
        self.label_netprice.setObjectName("label_netprice")

        self.doubleSpinBox_price = QtWidgets.QDoubleSpinBox(self.centralwidget)
        self.doubleSpinBox_price.setGeometry(QtCore.QRect(260, 60, 421, 41))
        self.doubleSpinBox_price.setObjectName("doubleSpinBox_price")
        ####################################
        # Link to function when value changes
        self.doubleSpinBox_price.valueChanged.connect(self.Refresh)
        ####################################

        self.doubleSpinBox_discount = QtWidgets.QDoubleSpinBox(self.centralwidget)
        self.doubleSpinBox_discount.setGeometry(QtCore.QRect(260, 160, 421, 41))
        self.doubleSpinBox_discount.setObjectName("doubleSpinBox_discount")
        ####################################
        # Link to function when value changes
        self.doubleSpinBox_discount.valueChanged.connect(self.Refresh)
        ####################################

        MainWindow.setCentralWidget(self.centralwidget)
        self.menubar = QtWidgets.QMenuBar(MainWindow)
        self.menubar.setGeometry(QtCore.QRect(0, 0, 800, 21))
        self.menubar.setObjectName("menubar")
        MainWindow.setMenuBar(self.menubar)
        self.statusbar = QtWidgets.QStatusBar(MainWindow)
        self.statusbar.setObjectName("statusbar")
        MainWindow.setStatusBar(self.statusbar)

        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", "Price:"))
        self.label_2.setText(_translate("MainWindow", "Discount:"))
        self.label_3.setText(_translate("MainWindow", "Net Price:"))

    ##########################################
    # Function for refreshing the output label
    def Refresh(self):
        price = self.doubleSpinBox_price.value()
        discount = self.doubleSpinBox_discount.value()
        netprice = price * (1 - discount)
        self.label_netprice.setText(str(netprice))
    ##########################################

if __name__ == "__main__":
    import sys
    app = QtWidgets.QApplication(sys.argv)
    MainWindow = QtWidgets.QMainWindow()
    ui = Ui_MainWindow()
    ui.setupUi(MainWindow)
    MainWindow.show()
    sys.exit(app.exec_()) 

在我的代码中,SpinBox受限于99,但您可以将其设置为更高的值。

只是一个提示:如果你给他们一个简短但相关的代码示例,人们更有可能帮助你,他们不必建立自己的GUI。

我希望这会有所帮助。如果您觉得它很有用,请将其标记为正确。

祝福,

RaspiManu