Qt Quick - TabButton

Qt Quick - TabButton使用总结

  • 一、概述

一、概述

TabButton与TabBar一起使用。TabButton其实就是TabBar的一个内容
在这里插入图片描述

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

TabButton从AbstractButton继承了API。例如,你可以设置文本,并使用AbstractButton API对点击做出反应。

基本上我们可以把TabButton当Button来使用的。

你可能感兴趣的:(#,▶,QML笔记,TabBar,TabButton,qquick,qt5)