38 lines
696 B
QML
38 lines
696 B
QML
|
import QtQuick
|
||
|
import QtQuick.Controls
|
||
|
import QtQuick.Layouts
|
||
|
import QtQuick.Window
|
||
|
|
||
|
ApplicationWindow
|
||
|
{
|
||
|
visible: true
|
||
|
width: 600
|
||
|
height: 400
|
||
|
title: "TableView mit myChildModel"
|
||
|
|
||
|
TableView
|
||
|
{
|
||
|
anchors.fill: parent
|
||
|
clip: true
|
||
|
columnSpacing: 1
|
||
|
rowSpacing: 1
|
||
|
|
||
|
model: myChildModel
|
||
|
|
||
|
delegate: Rectangle
|
||
|
{
|
||
|
implicitWidth: 150
|
||
|
implicitHeight: 40
|
||
|
border.color: "#cccccc"
|
||
|
//color: index % 2 === 0 ? "#f9f9f9" : "#e0e0e0"
|
||
|
|
||
|
Text {
|
||
|
anchors.centerIn: parent
|
||
|
text: display
|
||
|
font.pixelSize: 14
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|