PyQt5 – 添加/改变复选框的标题
在这篇文章中,我们将看到如何添加或改变与复选框相关的标题。在复选框中,基本上有两个部分,一个是复选部分,由复选符号组成,另一个是文本部分,类似于标签,包含文本。
为了添加或改变复选框的文本,我们将使用setText方法。
语法: checkbox.setText(caption)
参数: 它使用字符串作为参数。
执行的动作: 它将用新的标题替换现有的标题。
下面是实现方法。
# 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 the check-box
checkbox = QCheckBox('Check Box', self)
# setting geometry of check box
checkbox.setGeometry(200, 150, 100, 30)
# setting check box state to checked
checkbox.setText("Caption")
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出 :