PyQt5 – 获取单选按钮标题的程序

PyQt5 – 获取单选按钮标题的程序

在这篇文章中,我们将看到如何获得单选按钮的文本(标题)。当我们创建单选按钮时,我们给它设置一些文本,在setText方法的帮助下,我们可以更新其中的文本。

实现的概述

1.我们将创建一个单选按钮。

2.在setText方法的帮助下,给单选按钮设置一些文本。

3.在text方法的帮助下,检索文本并将其保存在变量中。

4.创建一个标签,并将检索到的文本设置到该标签上。

下面是实现的过程。

# 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 a radio button
        radio_button = QRadioButton(self)
  
        # setting geometry of radio button
        radio_button.setGeometry(200, 150, 120, 40)
  
        # setting text to radio button
        radio_button.setText("GEEK Radio button ")
  
        # get the text of radio button
        text = radio_button.text()
  
        # create label to display the text
        label = QLabel(self)
  
        # set text to label
        label.setText("Caption of radio button is  : " + text)
  
        # set the geometry of label
        label.setGeometry(180, 200, 300, 30)
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

输出 :

PyQt5 - 获取单选按钮标题的程序

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程