PageFirst.qml 306 B

12345678910111213141516
  1. import QtQuick 2.11
  2. import QtQuick.Controls 2.3
  3. Rectangle {
  4. width: 400
  5. height: 300
  6. color: "#051f58"
  7. radius: 8
  8. Button {
  9. text: "登录页面-登录按钮"
  10. anchors.centerIn: parent
  11. onClicked: myLoder.sourceComponent = mainpage // 切换显示主页面
  12. }
  13. }