当前位置:   article > 正文

qml TabBar的使用_qml tabbar 放左边

qml tabbar 放左边
Window {
    visible: true
    width: 480
    height: 360
    //flags:  Qt.FramelessWindowHint
    title: qsTr("TabBar")
   //color: "#000"

    TabBar {
        id: bar
        width: parent.width
        TabButton {
            id : btn1
            text: qsTr("Home")
            //width: 100
            //height: parent.height

            background: Rectangle{
                implicitWidth: 100
                  implicitHeight: 40
                  opacity: enabled ? 1 : 0.3
                  color: btn1.down ? "#d0d0d0" : "#e0e0e0"
            }
        }
        TabButton {
            id : btn2
            text: qsTr("Discover")
            //width: 100
            //height: parent.height
            background:Rectangle {
                implicitWidth: 100
                          implicitHeight: 40
                          opacity: enabled ? 1 : 0.3
                          color: btn2.down ? "#d0d0d0" : "#e0e0e0"
            }
        }
        TabButton {
            id : btn3
            text: qsTr("Activity")
            //width: 100
            //height: parent.height
            background:Rectangle {
                implicitWidth: 100
                          implicitHeight: 40
                          opacity: enabled ? 1 : 0.3
                          color: btn3.down ? "#d0d0d0" : "#e0e0e0"
            }
        }
    }

    StackLayout {
        width: parent.width
        currentIndex: bar.currentIndex
        anchors.top: bar.bottom
        Item {
            id: homeTab
            Text {
                text: qsTr("homeTab")
            }
        }
        Item {
            id: discoverTab
            Text {
                text: qsTr("discoverTab")
            }
        }
        Item {
            id: activityTab
            Text {
                text: qsTr("activityTab")
            }
        }
    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Li_阴宅/article/detail/806048
推荐阅读
相关标签
  

闽ICP备14008679号