TabButton QML Type

TabBar に適した外観を持つボタン ...続きを読む

Import Statement: import QtQuick.Controls
Inherits:

AbstractButton

詳細説明

TabButton はTabBar と組み合わせて使用します。

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

TabButton はAbstractButton から API を継承しています。例えば、text を設定し、AbstractButton API を使用してclicks に反応することができます。

TabBarTabButton のカスタマイズボタン・コントロールナビゲーション・コントロールも参照してください

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.