QML:如何在TreeView和TableView上禁用边框?

时间:2015-10-12 01:17:16

标签: qt treeview tableview qml borderless

我可以删除这些元素的背景和交替的颜色,但我找不到如何删除它周围的边框。有可能吗?

2 个答案:

答案 0 :(得分:4)

好的,我找到了解决方案:

TreeView {
    style: TableViewStyle {
        frame: Rectangle {
            border{
                color: "#42414a" // color of the border
            }
        }
    }
}

答案 1 :(得分:2)

如果您只想删除边框:

frameVisible: false