> For the complete documentation index, see [llms.txt](https://docs.novaflowos.com/start/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.novaflowos.com/start/mauikit/controles/toolbar.md).

# ToolBar

```
import QtQuick 2.15
import QtQuick.Controls 2.15
import org.mauikit.controls 1.3 as Maui

Maui.ApplicationWindow
{
    id: root

    Maui.Page {
        anchors.fill: parent

        showCSDControls: true

        Maui.ToolBar
        {
            width: parent.width
            height: 70

            position: ToolBar.Header

            leftContent: [
                ToolButton
                {
                    icon.name: "draw-arrow-back"
                },

                ToolButton
                {
                    icon.name: "draw-arrow-forward"
                }
            ]

            rightContent: [
                ToolButton
                {
                    icon.name: "search"
                }
            ]
        }
    }
}

```

<figure><img src="/files/tOvfSc99MLgpsYq9fdld" alt=""><figcaption></figcaption></figure>

## Propiedades

{% embed url="<https://api.kde.org/mauikit/mauikit/html/classToolBar.html>" %}
