其他分享
首页 > 其他分享> > qml 列/行布局--单选框

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("凉拌青瓜")
            }
        }
    }
}

标签:QtQuick,checked,单选框,--,text,qsTr,qml,import,true
来源: https://www.cnblogs.com/lodger47/p/14774243.html