-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtrain39.qml
64 lines (60 loc) · 1.33 KB
/
train39.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import QtQuick 2.15
Rectangle {
width: 800
height: 800
ListModel {
id: myListModel
ListElement { // arbitary properties
name: "akbar"
password: "ak22"
}
ListElement {
name: "ali"
password: "44"
}
ListElement {
name: "reza"
password: "22"
}
ListElement {
name: "nasrin"
password: "99"
}
ListElement {
name: "reza"
password: "12345"
}
ListElement {
name: "hosein"
password: "df"
}
ListElement {
name: "saleh"
password: "as"
}
}
Grid {
x: 10
y: 10
columns: 5
rows: 5
columnSpacing: 20
rowSpacing: 60
Repeater {
model: myListModel
AyRect {
rectText: name
width: 100;
height: 50;
AyRect {
rectText: password
width: parent.width
height: 30
anchors.top: parent.bottom
anchors.topMargin: 10
anchors.horizontalCenter: parent.horizontalCenter
}
}
}
}
}