En esta página

ToolButton QML Type

Botón con un aspecto adecuado para un ToolBar. Más...

Import Statement: import QtQuick.Controls
Inherits:

Button

Descripción detallada

ToolButton es funcionalmente similar a Button, pero proporciona un aspecto más adecuado dentro de un ToolBar.

Barra de herramientas con botones

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 hereda su API de AbstractButton. Por ejemplo, puede configurar text, mostrar un icono y reaccionar a clicks utilizando la API AbstractButton.

Véase también ToolBar, Personalización de ToolButton y Controles de botón.

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