1234567891011121314151617181920 |
- import QtQuick 1.0
- /**
- * Using an alias in your persistent object is even easier.
- */
- Rectangle {
- width: 300
- height: 300
- PersistentObject {
- property alias someText: inputField.text
- }
- TextInput {
- id: inputField
- text: "Initial text"
- }
- }
|