TabButton QML Type

A tab button control. More...

Import Statement: import Qt.labs.controls 1.0
Inherits:

AbstractButton

Detailed Description

TabButton is used in conjunction with a TabBar.


  TabBar {
      TabButton {
          text: qsTr("Home")
      }
      TabButton {
          text: qsTr("Discover")
      }
      TabButton {
          text: qsTr("Activity")
      }
  }

Note: Types in the Qt.labs module are not guaranteed to remain compatible in future versions.

See also TabBar, Customizing TabButton, and Navigation Controls.