20200207-01 TableView 去掉外边框 QML

单纯去掉外边框

TableView {
    frameVisible: false
}

对外边框进行设置

TableView {
    style: TableViewStyle {
        frame: Rectangle {
            border {
                color: "transparent"
            }
        }
    }
}
发布了120 篇原创文章 · 获赞 27 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/qq_24890953/article/details/104209128
QML
今日推荐