Qt Quick入门教程(7):复选框CheckBox

QML的复选框是CheckBox,使用代码如下:

import QtQuick 2.12
import QtQuick.Window 2.12
import QtQuick.Controls 2.5
import QtQuick.Layouts 1.12

Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    ColumnLayout {
          x:20
          y:20

          CheckBox {
              id:ch1
              checked: true
              text: qsTr("First")
          }
          CheckBox {
              id:ch2
              text: qsTr("Second")
          }
          CheckBox {
              id:ch3
              checked: true
              text: qsTr("Third")
          }

          Button{
              text: "获取CheckBox状态"
              onClicked: {
                  console.log(ch1.checked)
                  console.log(ch2.checked)
                  console.log(ch3.checked)
              }
          }
      }
}

运行界面

Qt Quick入门教程(7):复选框CheckBox

上一篇:惊掉我的下巴,Alibaba 首次公布 Java10W 字面经,Github 访问量破百万


下一篇:git安装