Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. QML - Anchor a TabView's tabBar at the bottom of the TabView
QtWS25 Last Chance

QML - Anchor a TabView's tabBar at the bottom of the TabView

Scheduled Pinned Locked Moved Solved QML and Qt Quick
3 Posts 2 Posters 2.0k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    BjoernK
    wrote on last edited by
    #1

    Hi!

    Is it possible to anchor the tabBar of a TabView at the bottom of the TabView?
    I tried to achieve this by means of the TabViewStyle but I can't figure out how it works.

    TabView {
                id: tabView
                anchors.fill: parent
                style: TabViewStyle {
                    tabBar: Rectangle {
                        anchors.bottom: control.bottom
                    }
                }
                Tab {
                    title: "example"
                    Label { }
                }
    }
    

    The following error message is displayed:
    QML Rectangle: Cannot anchor to an item that isn't a parent or sibling.

    Do I miss a simple solution?

    Best regards,
    Björn

    1 Reply Last reply
    0
    • jpnurmiJ Offline
      jpnurmiJ Offline
      jpnurmi
      wrote on last edited by
      #2

      Hi, see http://doc.qt.io/qt-5/qml-qtquick-controls-tabview.html#tabPosition-prop

      TabView { tabPosition: Qt.BottomEdge }
      
      1 Reply Last reply
      1
      • B Offline
        B Offline
        BjoernK
        wrote on last edited by
        #3

        Thank you very much. That was exactly what I was looking for.

        Best regards,
        Björn

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved