qml中 tableviewcolumn的背景色怎么设置?
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
1个回答
展开全部
你可以用itemDelegate 或者 在TableViewColumn中的delegate进行赋色 或者 rowDelegate
将下面代码 注释部分打开
TableView {
backgroundVisible : false
contentFooter: Rectangle{
width: 200;height: 50
color:"#600000FF" //"blue"
}
contentHeader:Rectangle{
width: 200;height: 50
color:"#60FFFF00"//"yellow"
}
/*a*/
// itemDelegate: Rectangle{
// width: 200
// height: 50
// color:"#6000FF00" //"green"
// border.width: 1
// border.color: "black"
// Text {
// anchors.verticalCenter: parent.verticalCenter
// color: styleData.textColor
// elide: styleData.elideMode
// text: styleData.value
// }
// }
/*a*/
/*b*/
rowDelegate:Rectangle{
width: 200
height: 50
color:"#90000000"
Text{
text: styleData.alternate
anchors.centerIn: parent
}
Rectangle{
anchors.bottom: parent.bottom;height: 1;width: parent.width
}
}
/*b*/
TableViewColumn { role: "title"; title: "Title"; width: 100
/*c*/
// delegate: Rectangle{
// color:"#60FF0000" //"red"
// Text{
// anchors.centerIn: parent
// text: styleData.value
// }
// }
/*c*/
}
TableViewColumn { role: "author"; title: "Author"; width: 100
// delegate: Rectangle{
// color:"#60FF0000" //"red"
// Text{
// anchors.centerIn: parent
// text: styleData.value
// }
// }
}
model: ListModel{
ListElement { title: "Title";author:"Author"}
ListElement { title: "Title";author:"Author"}
}
}
将下面代码 注释部分打开
TableView {
backgroundVisible : false
contentFooter: Rectangle{
width: 200;height: 50
color:"#600000FF" //"blue"
}
contentHeader:Rectangle{
width: 200;height: 50
color:"#60FFFF00"//"yellow"
}
/*a*/
// itemDelegate: Rectangle{
// width: 200
// height: 50
// color:"#6000FF00" //"green"
// border.width: 1
// border.color: "black"
// Text {
// anchors.verticalCenter: parent.verticalCenter
// color: styleData.textColor
// elide: styleData.elideMode
// text: styleData.value
// }
// }
/*a*/
/*b*/
rowDelegate:Rectangle{
width: 200
height: 50
color:"#90000000"
Text{
text: styleData.alternate
anchors.centerIn: parent
}
Rectangle{
anchors.bottom: parent.bottom;height: 1;width: parent.width
}
}
/*b*/
TableViewColumn { role: "title"; title: "Title"; width: 100
/*c*/
// delegate: Rectangle{
// color:"#60FF0000" //"red"
// Text{
// anchors.centerIn: parent
// text: styleData.value
// }
// }
/*c*/
}
TableViewColumn { role: "author"; title: "Author"; width: 100
// delegate: Rectangle{
// color:"#60FF0000" //"red"
// Text{
// anchors.centerIn: parent
// text: styleData.value
// }
// }
}
model: ListModel{
ListElement { title: "Title";author:"Author"}
ListElement { title: "Title";author:"Author"}
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询