test.qml 345 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

Don Gagne's avatar
Don Gagne committed
5
import QGroundControl.FactControls 1.0
Don Gagne's avatar
Don Gagne committed
6
import QGroundControl.Palette 1.0
7

Don Gagne's avatar
Don Gagne committed
8 9 10 11 12 13 14 15

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

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