-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.qml
More file actions
41 lines (31 loc) · 782 Bytes
/
Main.qml
File metadata and controls
41 lines (31 loc) · 782 Bytes
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
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
Window {
id: window
visible: true
width: 1000
height: 630
color: "#DEE3E6"
// TEST
// Component {
// id: testComponent
// MyTableView {}
// // Rectangle {
// // width: 10
// // height: 10
// // color: 'gold'
// // }
// }
// ENDTEST
ColumnLayout {
anchors.fill: parent
Rectangle {
id: tableViewContainer
Layout.fillWidth: true
Layout.fillHeight: true
data: managerInstance.qmlItem
}
}
// MyTableView {}
}