QML实现单选按钮

Posted xuexiwrite

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QML实现单选按钮相关的知识,希望对你有一定的参考价值。

这里使用了高亮代理


import QtQuick 2.0

Item {
    id: root

    width: 1920
    height: 1080

    Component {
        id: highlightDelegate
        Rectangle {
            width: 100
            height: 50
            color: "transparent"
            border.color: "red"
            z:1
        }
    }

    ListView {
        width: 600
        height: 800
        anchors.centerIn: parent

        model: 5
        delegate: Rectangle {
            id: delegateItem
            width: 100
            height: 50
            color: "lightblue"
            Text {
                anchors.centerIn: parent
                text: index
                font.pixelSize: 30
            }
            border.color: "black"

            MouseArea {
                anchors.fill: parent
                onClicked:  delegateItem.ListView.view.currentIndex = index
            }
        }
        highlight: highlightDelegate
    }


}

以上是关于QML实现单选按钮的主要内容,如果未能解决你的问题,请参考以下文章

求教QML RadioButton单选问题

带有 React 的单选按钮

如何以编程方式更改表格单元格中单选按钮组的单选按钮?

26.Qt Quick QML-RotationAnimationPathAnimationSmoothedAnimationBehaviorPauseAnimationSequential(代码片段

iOS 中单选按钮的实现

Swift tableview 单元格单选按钮实现