SettingsForm.ui.qml 697 B

1234567891011121314151617181920212223242526272829
  1. import QtQuick 2.7
  2. Item {
  3. width: 400
  4. height: 400
  5. Item {
  6. id: pageNameLayout
  7. height: 40
  8. anchors.right: parent.right
  9. anchors.rightMargin: 0
  10. anchors.left: parent.left
  11. anchors.leftMargin: 0
  12. anchors.bottom: parent.bottom
  13. anchors.bottomMargin: 0
  14. Text {
  15. id: pageName
  16. text: qsTr("Настройки")
  17. font.pixelSize: parent.width > 300 ? 24 : 12
  18. verticalAlignment: Text.AlignVCenter
  19. horizontalAlignment: Text.AlignHCenter
  20. renderType: Text.QtRendering
  21. font.capitalization: Font.MixedCase
  22. anchors.fill: parent
  23. }
  24. }
  25. }