DEBSOURCES
Skip Quicknav
sources / qtdeclarative-opensource-src / 5.11.3-4 / tests / auto / quick / qquickbehaviors / data / ItemWithInnerBehavior.qml
12345678910
import QtQuick 2.4 Item { id: root property bool someValue Behavior on someValue { ScriptAction { script: { parent.behaviorTriggered = true }} } }