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

Posted

技术标签:

【中文标题】QML:如何在 TreeView 和 TableView 禁用边框?【英文标题】:QML: How to disable borders at TreeView and TableView? 【发布时间】:2015-10-12 01:17:16 【问题描述】:

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

【问题讨论】:

【参考方案1】:

如果只想去掉边框:

frameVisible: false

【讨论】:

【参考方案2】:

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

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

【讨论】:

找到解决方案后,将问题标记为已解决。

以上是关于QML:如何在 TreeView 和 TableView 禁用边框?的主要内容,如果未能解决你的问题,请参考以下文章

如何将渐变设置为 QML TreeView 背景?

这是 QML 中最小可行的 TreeView 模型吗?

使 QML TreeView 可调整大小

QML 创建 TreeView 动态模型的正确方法是啥?

为 QML TreeView 创建模型

Qml中关于TreeView 简单model自定义类型实现