qml tableview 显示单元格边框

 我来答
  • 你的回答被采纳后将获得:
  • 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
shen90p
2015-09-30 · TA获得超过251个赞
知道小有建树答主
回答量:205
采纳率:100%
帮助的人:132万
展开全部
显示边框的话 需要在你使用的 delegate 里设置,用Rectangle的 border属性是不合适的 因为有重叠, 你需要写三个宽或者高是1的Rectangle 在你delegate的左右 上/下.如果要隔行变颜色之类的 可以用 color:styleData.row%2 === 0 ? "red":"green"

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
color:"red"
}
}
/*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
/*c*/
// delegate: Rectangle{
// color:"#60FF0000" //"red"
// Text{
// anchors.centerIn: parent
// text: styleData.value
// }
// }
/*c*/
}
model: ListModel{
ListElement { title: "Title";author:"Author"}
ListElement { title: "Title";author:"Author"}
}
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式