demo2.qml 271 B

1234567891011121314151617181920
  1. import QtQuick 1.0
  2. /**
  3. * Using an alias in your persistent object is even easier.
  4. */
  5. Rectangle {
  6. width: 300
  7. height: 300
  8. PersistentObject {
  9. property alias someText: inputField.text
  10. }
  11. TextInput {
  12. id: inputField
  13. text: "Initial text"
  14. }
  15. }