Files
pyqcrm/gui/TopBar.qml
2024-11-04 14:03:41 +01:00

82 lines
1.3 KiB
QML

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
// Item
// {
// id: topBar
// anchors
// {
// top: parent.top
// left: parent.left
// right: parent.right
// }
// height: 30
RowLayout
{
id: topBar
height: 35
width: parent / 8
anchors
{
top: parent.top
left: parent.left
}
Button
{
id: dashBoard
Text
{
text: "Dashboard"
anchors.centerIn: parent
}
}
Button
{
id: kunden
Text
{
text: "Kunden"
anchors.centerIn: parent
}
}
Button
{
id: objekt
Text
{
text: "Objekt"
anchors.centerIn: parent
}
}
Button
{
id: mitarbeiter
Text
{
text: "Mitarbeiter"
anchors.centerIn: parent
}
}
Button
{
id: abrechnung
Text
{
text: "Abrechnung"
anchors.centerIn: parent
}
}
}