-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.qml
65 lines (49 loc) · 1.1 KB
/
main.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
65
import QtQuick 2.12
import QtQuick.Window 2.12
import QtQuick.Layouts 1.12
import QtGraphicalEffects 1.0
import QtQuick.Controls 2.12
import QtQuick.Shapes 1.12
import QtCharts 2.3
Window {
id: window
visible: true
width: 1280
height: 750
title: qsTr("Hello World")
Rectangle{
height: 750
color: "#33383d"
anchors.fill : parent
anchors.rightMargin: 0
anchors.bottomMargin: 0
gradient: Gradient {
GradientStop { position: 0.0; color: "#33383D" }
GradientStop {
position: 0.79401
color: "#33383d"
}
GradientStop { position: 1.0; color: "#1C1D20" }
}
}
ColumnLayout {
id: columnLayout
height: 100
anchors.right: parent.right
anchors.left: parent.left
anchors.top: parent.top
spacing: 20
ControlSlot {
}
ControlSlot {
}
ControlSlot {
}
ControlSlot {
}
}
}
/*##^## Designer {
D{i:5;anchors_height:100;anchors_width:100}
}
##^##*/