aboutsummaryrefslogtreecommitdiffstats
path: root/DemoApplication/controls/CNRadioButton.qml
blob: 1f649b3e67f3a7d1d821fc9c77db7cc30156d072 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0
import QtQuick.Controls 2.2
import CursorNavigation 1.0

RadioButton {
    CursorNavigation.acceptsCursor: true
    Rectangle {
        anchors.fill: parent
        color: "transparent"
        border.width: 2
        border.color: "red"
        visible: parent.CursorNavigation.hasCursor
    }
}