qt6-bb10/qtdeclarative/tests/auto/quick/qquickbehaviors/data/bindableProperty.qml

13 lines
241 B
QML

import QtQuick
import test
TestBindable {
property int targetValue: 0
prop: targetValue
property alias enableBehavior: behavior.enabled
Behavior on prop {
id: behavior
NumberAnimation {duration: 100}
}
}