SearchBar

This commit is contained in:
2024-11-06 09:17:09 +01:00
parent 493270efc1
commit 9b30f5e127
7 changed files with 15 additions and 3 deletions

View File

@@ -27,6 +27,8 @@ import QtQuick.Layouts
id: dashBoard
flat: true
text: qsTr("Dashboard")
implicitWidth: dashBoard.implicitContentWidth + 10
}
Button
@@ -34,6 +36,7 @@ import QtQuick.Layouts
id: kunden
flat: true
text: qsTr("Kunden")
implicitWidth: kunden.implicitContentWidth + 10
onClicked:
{
appLoader.source = "Tables.qml"
@@ -45,6 +48,7 @@ import QtQuick.Layouts
id: objekt
flat: true
text: qsTr("Objekt")
implicitWidth: objekt.implicitContentWidth + 10
}
Button
@@ -52,6 +56,7 @@ import QtQuick.Layouts
id: mitarbeiter
flat: true
text: qsTr("Mitarbeiter")
implicitWidth: mitarbeiter.implicitContentWidth + 10
}
Button
@@ -59,6 +64,7 @@ import QtQuick.Layouts
id: abrechnung
flat: true
text: qsTr("Abrechnung")
implicitWidth: abrechnung.implicitContentWidth + 10
}
Item