Files
pyqcrm/gui/TopBar.qml
2024-11-04 13:56:09 +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 / 4
anchors
{
top: parent.top
left: parent.left
right: parent.right
}
Button
{
// width: parent.width/7
Layout.preferredWidth: parent.width/5
Text
{
text: "Dashboard"
id: dashBoard
}
}
Button
{
Layout.preferredWidth: parent.width/5
Text
{
text: "Kunden"
}
}
Button
{
Layout.preferredWidth: parent.width/5
Text
{
text: "Objekt"
}
}
Button
{
Layout.preferredWidth: parent.width/5
Text
{
text: "Mitarbeiter"
}
}
Button
{
Layout.preferredWidth: parent.width/5
Text
{
text: "Abrechnung"
}
}
}