ChronoFlow/ChronoFlow.View/Admin/AdminMainView.axaml
2025-06-21 11:32:41 +02:00

40 lines
1.9 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:model="clr-namespace:ChronoFlow.Model;assembly=ChronoFlow.Model"
x:Class="ChronoFlow.View.Admin.AdminMainView">
<DockPanel>
<!-- 🧭 Top-Menüleiste für Admins -->
<StackPanel Orientation="Horizontal" DockPanel.Dock="Top" Background="Black" Margin="5" Spacing="10">
<Button Content="📋 Alle bestehenden Projekte" Click="AlleProjekte_Click"/>
<Button Content="👥 Mitarbeiterliste" Click="MitarbeiterListe_Click"/>
<Button Content="✅ Abgeschlossene Projekte" Click="AbgeschlosseneProjekte_Click"/>
<Button Content=" Mitarbeiter hinzufügen" Click="MitarbeiterHinzufuegen_Click"/>
<Button Content=" Projekt erstellen" Click="ProjektErstellen_Click"/>
</StackPanel>
<!-- Hauptinhalt -->
<StackPanel Margin="20" Spacing="15">
<TextBlock Text="Admin-Dashboard" FontSize="24" FontWeight="Bold" HorizontalAlignment="Center"/>
<TextBlock Text="Zuletzt hinzugefügte Projekte" FontSize="18" FontWeight="SemiBold" Margin="0,20,0,10"/>
<ItemsControl x:Name="LetzteProjekteListe">
<ItemsControl.ItemTemplate>
<DataTemplate DataType="{x:Type model:Zeiteintrag}">
<Border BorderBrush="Gray" BorderThickness="1" Padding="10" Margin="0,5">
<StackPanel>
<TextBlock Text="{Binding Projekt}" FontWeight="Bold"/>
<TextBlock Text="{Binding Mitarbeiter}"/>
<TextBlock Text="{Binding Startzeit, StringFormat='Start: {0:G}'}"/>
<TextBlock Text="{Binding Endzeit, StringFormat='Ende: {0:G}'}"/>
</StackPanel>
</Border>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</StackPanel>
</DockPanel>
</UserControl>