test.qml 310 Bytes
Newer Older
1 2 3
import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2
Don Gagne's avatar
Don Gagne committed
4
import QGroundControl.FactControls 1.0
5

Don Gagne's avatar
Don Gagne committed
6 7 8 9 10 11 12 13

Rectangle {
    QGCPalette { id: palette; colorGroup: enabled ? QGCPalette.Active : QGCPalette.Disabled }

    width: 100
    height: 100
    color: "#e43f3f"
    // palette.windowText
14
}