使用PyQt5在文本框内打印输出语句

2024-10-04 11:27:30 发布

您现在位置:Python中文网/ 问答频道 /正文

我创建了一个widget,widget的过程从输入SQL.table\u名称并切换Run\u analysis按钮以生成以下格式的输出csv.xml文件. 上述过程表现良好。但我坚持在较大的文本框中打印(print)语句。你知道吗

enter image description here

class EpiClass:
    NR = 0
    R = 0
    CT = 0
    def __init__(self, obj):
        self.obj = obj
    def epi_calc(self):
        """Function to process EPI formula"""
        with open(FN, "w") as FL: #FN object FL
            for j in self.obj:
                if j[12] is not None and float(j[12]) != 0: #Exclude (Null, 0) values in Cre-j[12]
                    j12 = float(j[12])
                    type(j12)
                    #type(j[12]) #tested
                    #type(j[35]) #tested
                  {
                    Body of statement, assume it add two variable
                  }

        print("Total no of rows affected:", EpiClass.CT)
        print("No. of records not analysed:", EpiClass.NR)
        print("No. of records analysed:", EpiClass.R)

到PyQt5了。你知道吗

class WinClass(QMainWindow):
    """Main Window"""
    def __init__(self):
        super().__init__()
        self.title = 'EGFR Widget'
        self.left = 10
        self.top = 10
        self.width = 1920
        self.height = 1080
        self.init_ui()
    def init_ui(self):
        """Window Geometry"""
        self.setWindowTitle(self.title)
        self.setGeometry(self.left, self.top, self.width, self.height)
        #label
        # Create textbox
        self.textbox = QLineEdit(self)
        self.textbox.move(20, 20)
        self.textbox.resize(280, 40)
        # Create a button in the window
        self.button = QPushButton('Run Analysis', self)
        self.button.move(20, 80)
        #Print affected Rows
        self.textbox2 = QLineEdit(self)
        self.textbox2.move(120, 120)
        self.textbox2.resize(880, 140)
        # connect button to function on_click
        self.button.clicked.connect(self.on_click)
        self.show()

    @pyqtSlot()
    def on_click(self):
        """Button Action function"""
        tb_value = str(self.textbox.text())
        new_class = Edb(tb_value)
        new_class.eclass()
######Im messed up in this step to print that 3 statements in textbox2#############
        tb2_value = str(self.textbox2.text(EpiClass.CT))
        #tb3_value = str(self.textbox2.text(EpiClass.NR))
        #tb4_value = str(self.textbox2.text(EpiClass.R))

if __name__ == '__main__':
    APP = QApplication(sys.argv)
    ex = WinClass()
    sys.exit(APP.exec_())

请建议一个代码来解决打印语句。非常感谢!你知道吗


Tags: oftextinselfobjinitvaluedef
1条回答
网友
1楼 · 发布于 2024-10-04 11:27:30

如果您试图使用只读方法text进行编写,则应该改用setText。我会将这些语句保存在一些变量中,并从您的小部件访问,但这取决于您。希望对你有帮助。你知道吗

def on_click(self):
    """Button Action function"""
    tb_value = "Total no of rows affected: {}".format(EpiClass.CT)
    self.textbox2.setText(tb_value)

相关问题 更多 >