41 lines
1.5 KiB
XML
41 lines
1.5 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="ChronoFlow.View.Admin.ProjektErstellenView">
|
|
|
|
<ScrollViewer>
|
|
<StackPanel Margin="20" Spacing="15">
|
|
|
|
<TextBlock Text="Neues Projekt erstellen" FontSize="20" FontWeight="Bold" HorizontalAlignment="Center" />
|
|
|
|
<TextBlock Text="Projektname:" />
|
|
<TextBox x:Name="ProjektnameBox" />
|
|
|
|
<TextBlock Text="Startdatum:" />
|
|
<DatePicker x:Name="StartdatumPicker" />
|
|
|
|
<TextBlock Text="Startzeit (HH:mm):" />
|
|
<TextBox x:Name="StartzeitBox" Watermark="z.B. 09:00" />
|
|
|
|
<TextBlock Text="Enddatum:" />
|
|
<DatePicker x:Name="EnddatumPicker" />
|
|
|
|
<TextBlock Text="Endzeit (HH:mm):" />
|
|
<TextBox x:Name="EndzeitBox" Watermark="z.B. 17:00" />
|
|
|
|
<TextBlock Text="Mitarbeiter auswählen:" />
|
|
<ComboBox x:Name="MitarbeiterDropdown" />
|
|
|
|
<TextBlock Text="Kommentar:" />
|
|
<TextBox x:Name="KommentarBox" AcceptsReturn="True" Height="60" />
|
|
|
|
<StackPanel Orientation="Horizontal" Spacing="10" HorizontalAlignment="Center" Margin="0,10,0,0">
|
|
<Button Content="✅ Speichern" Click="SpeichernButton_Click" Width="115" />
|
|
<Button Content="⬅ Zurück zum Dashboard" Click="ZurueckButton_Click" Width="180" />
|
|
</StackPanel>
|
|
|
|
<TextBlock x:Name="FeedbackText" Foreground="Red" IsVisible="False" />
|
|
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
|
|
</UserControl> |