-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPage4Form.qml
37 lines (33 loc) · 960 Bytes
/
Page4Form.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import QtQuick 2.0
import QtQuick.Layouts 1.3
import QtQuick.Controls 2.2
Item {
GridLayout {
id: page4Grid
columns: 1
anchors.fill: parent
Button {
id: button1
text: "Click to change title"
// onClicked: updateTitle("This is new!")
}
Button {
id: button2
text: "Click to send a parammeter"
// onClicked: walletApp.listener("Parameter1", 234)
}
// ListView {
// id: walletList
// width: 200
// height: 100
// model: walletApp.wallets
// delegate: Rectangle {
// width: 200
// height: 100
// Text {
// text: "Owner: " + model.modelData.owner + ", " + model.modelData.amount + " " + model.modelData.currency + ". Bills: " + model.modelData.count
// }
// }
// }
}
}