QML TabView 去除 tab 标签

QML remove the tab widget from TabView

    TabView {
        id: tabView
        anchors.fill: parent
        style: TabViewStyle {
            tab: Rectangle {
                implicitWidth: 0
                implicitHeight: 0
            }
        }
    }

你可能感兴趣的:(QML TabView 去除 tab 标签)