Sur cette page

ToolButton QML Type

Bouton dont l'aspect convient à une ToolBar. Plus...

Import Statement: import QtQuick.Controls
Inherits:

Button

Description détaillée

ToolButton est fonctionnellement similaire à Button, mais offre un aspect qui convient mieux à ToolBar.

Barre d'outils contenant des boutons d'outils

ToolBar {
    RowLayout {
        anchors.fill: parent
        ToolButton {
            text: qsTr("‹")
            onClicked: stack.pop()
        }
        Label {
            text: "Title"
            elide: Label.ElideRight
            horizontalAlignment: Qt.AlignHCenter
            verticalAlignment: Qt.AlignVCenter
            Layout.fillWidth: true
        }
        ToolButton {
            text: qsTr("⋮")
            onClicked: menu.open()
        }
    }
}

ToolButton hérite de l'API de AbstractButton. Par exemple, vous pouvez définir text, afficher une icône et réagir à clicks à l'aide de l'API AbstractButton.

Voir également ToolBar, Personnaliser le bouton d'outil et Contrôles de bouton.

© 2026 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.