qml中 tableviewcolumn的背景色怎么设置?

 我来答
  • 你的回答被采纳后将获得:
  • 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
shen90p
推荐于2017-09-18 · TA获得超过251个赞
知道小有建树答主
回答量:205
采纳率:100%
帮助的人:132万
展开全部
你可以用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"}
}
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式