32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="ChronoFlow.View.Admin.MitarbeiterBearbeitenDialog"
|
|
Width="450" Height="600"
|
|
Title="Mitarbeiter bearbeiten">
|
|
<ScrollViewer>
|
|
<StackPanel Margin="20" Spacing="15">
|
|
<TextBlock Text="Username:" />
|
|
<TextBox x:Name="UsernameBox" />
|
|
|
|
<TextBlock Text="Abteilung:" />
|
|
<TextBox x:Name="AbteilungBox" />
|
|
|
|
<TextBlock Text="Mitarbeiternummer:" />
|
|
<TextBox x:Name="MitarbeiternummerBox" />
|
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Spacing="10" Margin="0,10,0,0">
|
|
<Button Content="✅ Speichern" Width="120" Click="SpeichernButton_Click" />
|
|
<Button Content="❌ Abbrechen" Width="120" Click="AbbrechenButton_Click" />
|
|
</StackPanel>
|
|
|
|
<!-- Erfolgs-Hinweis -->
|
|
<TextBlock x:Name="FeedbackText"
|
|
Text="Änderungen erfolgreich übernommen."
|
|
Foreground="Green"
|
|
FontWeight="Bold"
|
|
HorizontalAlignment="Center"
|
|
IsVisible="False"
|
|
Margin="0,10,0,0" />
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
</Window> |