qt6-bb10/qtdeclarative/tests/auto/quick/qquickloader/data/ActiveComponent.qml

12 lines
279 B
QML

import QtQuick 2.0
Item {
id: behaviorCounter
property int behaviorCount: 0
property int canary: 0
Behavior on canary {
NumberAnimation { target: behaviorCounter; property: "behaviorCount"; to: (behaviorCounter.behaviorCount + 1); duration: 0 }
}
}