qt6-bb10/qtdeclarative/tests/auto/quick/qquickaccessible/data/pushbutton.qml

16 lines
236 B
QML

import QtQuick 2.0
Rectangle {
Accessible.role : Accessible.Button
property string text : "test"
Text {
anchors.fill : parent
text : parent.text
}
MouseArea {
anchors.fill : parent
}
}