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

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