PyQt5 – 如何改变预先存在的标签的文本 | setText方法

PyQt5 – 如何改变预先存在的标签的文本 | setText方法

在GUI应用程序中,需要使用PyQt5中的标签来显示信息,但有时也需要改变标签的文本,在本教程中我们将看到如何做到这一点。

setText()方法是用来改变标签的内容的。

语法: label.setText(Info)

参数: 它需要字符串作为参数。

代码。

# importing the required libraries
  
from PyQt5.QtWidgets import * 
from PyQt5 import QtCore
from PyQt5.QtGui import * 
import sys
  
class Window(QMainWindow):
    def __init__(self):
        super().__init__()
  
        # informations
        info = "info"
        new_info = "new info "
  
        # set the title
        self.setWindowTitle("Label")
  
        # setting  the geometry of window
        self.setGeometry(0, 0, 400, 300)
  
        # creating a label widget
        self.label_1 = QLabel(info, self)
  
        # moving position
        self.label_1.move(100, 100)
  
        # setting up border
        self.label_1.setStyleSheet("border: 1px solid black;")
  
        # creating a label widget
        self.label_2 = QLabel(info, self)
  
        # moving position
        self.label_2.move(100, 150)
  
        # setting up border
        self.label_2.setStyleSheet("border: 1px solid black;")
  
        # changing the text of label
        self.label_2.setText(new_info)
  
        # show all the widgets
        self.show()
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

输出 :

PyQt5 - 如何改变预先存在的标签的文本  setText方法

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程