-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPageColorConfigArray.qml
More file actions
102 lines (89 loc) · 2.65 KB
/
Copy pathPageColorConfigArray.qml
File metadata and controls
102 lines (89 loc) · 2.65 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import QtQuick 2.0
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.3
Item {
id: item1
width: 950
height: 300
Rectangle {
id: rectangle
color: "#ffffff"
radius: 5
anchors.fill: parent
border.width: 3
border.color: "Silver"
ColumnLayout {
x: 88
y: 80
width: 900
height: 250
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
spacing: 60
RowLayout {
spacing: 80
Label {
id: label
text: pageColorConfigModel.subList[0]
font.pointSize: 33
font.family: "Courier"
}
Label {
id: label1
text: pageColorConfigModel.subList[1]
font.pointSize: 33
font.family: "Courier"
}
Label {
id: label2
text: pageColorConfigModel.subList[2]
font.pointSize: 33
font.family: "Courier"
}
}
RowLayout {
scale: 1
spacing: 80
Label {
id: label3
text: pageColorConfigModel.subList[3]
font.pointSize: 33
font.family: "Courier"
}
Label {
id: label4
text: pageColorConfigModel.subList[4]
font.pointSize: 33
font.family: "Courier"
}
Label {
id: label5
text: pageColorConfigModel.subList[5]
font.pointSize: 33
font.family: "Courier"
}
}
RowLayout {
spacing: 80
Label {
id: label6
text: pageColorConfigModel.subList[6]
font.pointSize: 33
font.family: "Courier"
}
Label {
id: label7
text: pageColorConfigModel.subList[7]
font.pointSize: 33
font.family: "Courier"
}
Label {
id: label8
text: pageColorConfigModel.subList[8]
font.pointSize: 33
font.family: "Courier"
}
}
}
}
}