import QtQuick 1.0 Item { id: myItem width: 400 height: 400 Button { id: button labelText: "PRESS" anchors.horizontalCenter: myItem.horizontalCenter anchors.bottom: myItem.bottom anchors.bottomMargin: 20 onButtonClicked:{ button.labelText="Hooray!"; } } }