QML:如何禁用 TreeView 和 TableView 的边框?
QML: How to disable borders at TreeView and TableView?
我可以删除这个元素的背景和交替的颜色,但我找不到如何删除它周围的边框。可能吗?
好的,我找到了解决方案:
TreeView {
style: TableViewStyle {
frame: Rectangle {
border{
color: "#42414a" // color of the border
}
}
}
}
如果您只想去除边框:
frameVisible: false
我可以删除这个元素的背景和交替的颜色,但我找不到如何删除它周围的边框。可能吗?
好的,我找到了解决方案:
TreeView {
style: TableViewStyle {
frame: Rectangle {
border{
color: "#42414a" // color of the border
}
}
}
}
如果您只想去除边框:
frameVisible: false