RebalUI.qml 249 B

1234567891011121314151617
  1. import QtQuick 2.0
  2. Rectangle {
  3. width: 360
  4. height: 360
  5. Text {
  6. anchors.centerIn: parent
  7. text: "Hello World"
  8. }
  9. MouseArea {
  10. anchors.fill: parent
  11. onClicked: {
  12. Qt.quit();
  13. }
  14. }
  15. }