ToolButton QML Type▲
- 
					
Import Statement: import QtQuick.Controls 2.5
 - 
					
Since: Qt 5.7
 - 
					
Inherits: Button
 - 
					
Group: ToolButton is part of qtquickcontrols2-buttons
 
Detailed Description▲
ToolButton is functionally similar to Button, but provides a look that is more suitable within a ToolBar.

Sélectionnez
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 inherits its API from AbstractButton. For instance, you can set text, display an icon, and react to clicks using the AbstractButton API.
See Also▲
See also ToolBar, Customizing ToolButton, Button Controls


