Skip to content
FactSystemTest.qml 369 B
Newer Older
Don Gagne's avatar
Don Gagne committed
import QtQuick 2.2
import QtQuick.Controls 1.2
import QGroundControl.FactSystem 1.0

Item {
    TextInput {
        objectName: "testControl"
        Fact { id: fact; name: "RC_MAP_THROTTLE" }
        text: fact.value
Don Gagne's avatar
Don Gagne committed
        font.family: "Helvetica"
        font.pointSize: 24
        color: "red"
        focus: true
        onAccepted: { fact.value = text; }
Don Gagne's avatar
Don Gagne committed
    }
}