qml 列/行布局--单选框

列/行布局

  • 单选框
import QtQuick 2.9
import QtQuick.Window 2.2
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.3
Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    Item {
        anchors.fill: parent
        //  列布局 Column
        ColumnLayout{  //RowLayout行布局 Row
            RadioButton {
                checked: true
                text: qsTr("火锅")
            }
            RadioButton {
//                checked: true
                text: qsTr("水煮鱼")
            }
            RadioButton {
//                checked: true
                text: qsTr("凉拌青瓜")
            }
        }
    }
}
上一篇:linux cpu 使用


下一篇:GitHub的注册和本地与远程操作