PyQt5 – 如何创建并获得Push Button的名称
在这篇文章中,我们将看到如何创建和获得Push Button的名字。当我们设计一个GUI(Graphical User Interface)应用程序时,我们会创建很多按钮。为了对它们进行分类,我们为它们设置名称,例如 “设置按钮”、”显示按钮 “等。
为了创建一个名称,我们使用setAccessibleName方法,为了获得名称,我们使用accessibleName。
注意: 如果没有创建名称,我们试图获得该名称,将返回空白字符串。
语法:
button.setAccessibleName(name)
button.accessibleName()
参数:
setAccessibleName以字符串为参数。
accessibleName不需要参数。
返回:
setAccessibleName返回无。
accessibleName返回字符串。
代码 :
# importing libraries
from PyQt5.QtWidgets import *
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 a push button
button = QPushButton("CLICK", self)
# setting geometry of button
button.setGeometry(200, 150, 100, 40)
# setting name
button.setAccessibleName("push button")
# adding action to a button
button.clicked.connect(self.clickme)
# accessing the name of button
name = button.accessibleName()
# creating a label to display a name
label = QLabel(self)
label.setText(name)
label.move(200, 200)
# action method
def clickme(self):
# printing pressed
print("pressed")
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出 :