PyQt5 – 查找单选按钮是否被选中

PyQt5 – 查找单选按钮是否被选中

在这篇文章中,我们将看到我们如何找到单选按钮是否被选中。默认情况下,单选按钮是不被选中的,但在setChecked方法的帮助下,我们可以将其设置为选中。

为了检查单选按钮是否被选中,我们将做以下工作。

1.创建一个按钮

2.创建一个标签,告知单选按钮是否被选中。

3.将一个方法连接到它,如果它被选中,就将其设置为选中。

  1. 为它连接一个方法,如果它的状态被改变,方法就会被调用。
    5.在方法中,在isChecked方法的帮助下检查单选按钮是否被选中。
    6.根据状态改变标签的文字。

下面是实现的过程。

# 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
        self.radio_button = QRadioButton(self)
  
        # setting geometry of radio button
        self.radio_button.setGeometry(200, 150, 120, 40)
  
        # setting text to radio button
        self.radio_button.setText("GEEK ?")
  
        # creating label to display if it is checked or not
        self.label = QLabel("", self)
  
        # setting geometry of label
        self.label.setGeometry(200, 200, 150, 40)
  
        # setting callable method to radio button
        self.radio_button.clicked.connect(self.check)
  
    # method called by radio button
    def check(self):
          
        # checking if it is checked
        if self.radio_button.isChecked():
              
            # changing text of label
            self.label.setText("It is now checked")
  
        # if it is not checked
        else:
              
            # changing text of label
            self.label.setText("")
  
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程