• Pyside6 QCheckBox



    QCheckBox是一个选项按钮,可以打开(选中)或关闭(未选中)。复选框通常用于在应用程序中表示某些功能的启用或者禁用。

    QCheckBox使用

    QCheckBox继承关系

    在这里插入图片描述
    QCheckBox是继承于QAbstractButton,所以QCheckBox的一些属性也继承了QAbstractButton。所以复选框在Pyside6中可以看作是特殊的按键。更多关于QCheckBox的使用可以参考下面两个文档。
    https://doc.qt.io/qtforpython-6/PySide6/QtWidgets/QAbstractButton.html
    https://doc.qt.io/qtforpython-6/PySide6/QtWidgets/QCheckBox.html

    QCheckBox的函数和信号

    QCheckBox的使用比较简单,通常我们只需要读取QCheckBox的状态,即QCheckBox是否被选中。QCheckBox和QPushButton一样,也是有自己的信号,不过通常我们只需要用到clicked这个信号。

    信号作用
    clicked按键松开时触发,如果按键按下后鼠标拖动到按键区域以外然后释放则不会触发
    pressed按键按下时触发
    released按键松开时触发,即使按键按下后鼠标拖动到按键区域以外也会触发
    toggled需要设置 setCheckable(true) 后再单击按钮才会触发该信号

    QCheckBox例程

    在例程中,会设置3个QChcekBox,当QCheckBox选中或者取消时,打印出QCheckBox的状态。

    界面设计

    首先打开designer软件,创建一个Main Window,并在主界面中放置3个QCheckBox。
    在这里插入图片描述

    QCheckBox绑定信号

    self.ui.checkBox.clicked.connect(self.checkoutbox_func1) # 复选框1
    self.ui.checkBox_2.clicked.connect(self.checkoutbox_func2) # 复选框2
    self.ui.checkBox_3.clicked.connect(self.checkoutbox_func3) # 复选框3
    def checkoutbox_func1(self):
            if self.ui.checkBox.isChecked() == True: # 判断复选框状态
                print("用户选择了苹果")
            else:
                print("用户没有选择苹果")
    
        def checkoutbox_func2(self):
            if self.ui.checkBox_2.isChecked() == True: # 判断复选框状态
                print("用户选择了香蕉")
            else:
                print("用户没有选择香蕉")
    
        def checkoutbox_func3(self):
            if self.ui.checkBox_3.isChecked() == True: # 判断复选框状态
                print("用户选择了葡萄")
            else:
                print("用户没有选择葡萄")
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    完整程序

    界面程序

    
    <ui version="4.0">
     <class>MainWindowclass>
     <widget class="QMainWindow" name="MainWindow">
      <property name="geometry">
       <rect>
        <x>0x>
        <y>0y>
        <width>282width>
        <height>217height>
       rect>
      property>
      <property name="windowTitle">
       <string>MainWindowstring>
      property>
      <widget class="QWidget" name="centralwidget">
       <layout class="QHBoxLayout" name="horizontalLayout">
        <item>
         <layout class="QVBoxLayout" name="verticalLayout">
          <item>
           <widget class="QLabel" name="label">
            <property name="maximumSize">
             <size>
              <width>16777215width>
              <height>20height>
             size>
            property>
            <property name="sizeIncrement">
             <size>
              <width>0width>
              <height>50height>
             size>
            property>
            <property name="baseSize">
             <size>
              <width>0width>
              <height>50height>
             size>
            property>
            <property name="font">
             <font>
              <pointsize>13pointsize>
             font>
            property>
            <property name="text">
             <string>请选择喜欢的水果string>
            property>
           widget>
          item>
          <item>
           <widget class="QCheckBox" name="checkBox">
            <property name="font">
             <font>
              <pointsize>13pointsize>
             font>
            property>
            <property name="text">
             <string>苹果string>
            property>
           widget>
          item>
          <item>
           <widget class="QCheckBox" name="checkBox_2">
            <property name="font">
             <font>
              <pointsize>13pointsize>
             font>
            property>
            <property name="text">
             <string>香蕉string>
            property>
           widget>
          item>
          <item>
           <widget class="QCheckBox" name="checkBox_3">
            <property name="font">
             <font>
              <pointsize>13pointsize>
             font>
            property>
            <property name="text">
             <string>葡萄string>
            property>
           widget>
          item>
         layout>
        item>
       layout>
      widget>
      <widget class="QMenuBar" name="menubar">
       <property name="geometry">
        <rect>
         <x>0x>
         <y>0y>
         <width>282width>
         <height>22height>
        rect>
       property>
      widget>
      <widget class="QStatusBar" name="statusbar"/>
     widget>
     <resources/>
     <connections/>
    ui>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105

    主程序

    # Import Qt libraries
    from PySide6.QtWidgets import *
    from PySide6.QtCore import QFile
    # Import UI developed in Qt Creator
    from checkbox_ui import Ui_MainWindow  # 导入界面
    # Import PseudoSensor
    # Import system tools and datetime
    import sys
    import statistics
    import time
    from datetime import datetime
    
    # Create and start the Qt application
    class MainWindow(QMainWindow):
        def __init__(self):
            super(MainWindow, self).__init__()
            
            # 设置界面为用户设计的界面
            self.ui = Ui_MainWindow() 
            self.ui.setupUi(self) 
           
            self.ui.checkBox.clicked.connect(self.checkoutbox_func1) # 复选框1
            self.ui.checkBox_2.clicked.connect(self.checkoutbox_func2) # 复选框2
            self.ui.checkBox_3.clicked.connect(self.checkoutbox_func3) # 复选框3
            
        def checkoutbox_func1(self):
            if self.ui.checkBox.isChecked() == True: # 判断复选框状态
                print("用户选择了苹果")
            else:
                print("用户没有选择苹果")
    
        def checkoutbox_func2(self):
            if self.ui.checkBox_2.isChecked() == True: # 判断复选框状态
                print("用户选择了香蕉")
            else:
                print("用户没有选择香蕉")
    
        def checkoutbox_func3(self):
            if self.ui.checkBox_3.isChecked() == True: # 判断复选框状态
                print("用户选择了葡萄")
            else:
                print("用户没有选择葡萄")
    
        def closeAndExit(self):
            sys.exit()
    
    if __name__ == "__main__":
        app = QApplication(sys.argv) # 初始化QApplication
    
        # 初始化界面并显示界面
        window = MainWindow() 
        window.setFixedSize(window.width(), window.height())
        window.show() 
    
        sys.exit(app.exec())
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55

    在这里插入图片描述

  • 相关阅读:
    ADSP-21489的图形化编程详解(3:音效开发例程-直通三个例程讲清楚)
    定岗定编设计:企业职能部门定岗定编设计项目成功案例
    biopython--PDB.polypepide
    Gxlcms有声小说系统/小说听书系统源码
    Win10一键重装系统后计算机图标怎么调出来
    C++之设计模式
    图解-排序算法-选排
    Linux之xinetd安装及实践
    Net6使用Yarp做网关
    羧基/羟基/氨基/巯基/环氧基/磺酸/胺基/苯基官能团化二氧化硅微球制备研究过程
  • 原文地址:https://blog.csdn.net/hwx1546/article/details/133693987