1
Ich habe dieses Stück Code in QML, aber ich bin nicht in der Lage, einen statischen Text als Header jeder Spalte hinzuzufügen.Header in QML-Spalte
Ich habe versucht, online zu suchen, aber ich finde nicht den Asnwer. Oder ich verstehe es einfach nicht.
Component {
id: pedido
Item {
id: item
width: parent.width;
Row {
id: row
width: parent.width
anchors.verticalCenter: parent.verticalCenter
Column {
width: parent.width * 0.3
Text {
text: " " + codigo;
font.family: "Helvetica"
font.pointSize: 14
font.bold: true
color: item.ListView.isCurrentItem ? "white" : "black" }
Column {
width: parent.width * 0.5
Text {
text: " " + nombre;
font.family: "Helvetica"
font.pointSize: 14
font.bold: true
color: item.ListView.isCurrentItem ? "white" : "black"
}
}
Column {
width: parent.width * 0.2
Text {
text: " " + fecha;
font.family: "Helvetica"
font.pointSize: 14
font.bold: true
}
}
Sorgen Sie sich nicht, wenn es {}
fehlen.