Last and Final Push

This commit is contained in:
ViperioN1339 2025-06-30 15:23:02 +02:00
parent 146aba1157
commit d53257dcdc
3 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@
<!-- 👤 Benutzername -->
<TextBlock Text="Benutzername" />
<TextBox x:Name="UsernameBox"
Watermark="z.B. admin" />
Watermark="z.B. admin" />
<!-- 🔒 Passwort -->
<TextBlock Text="Passwort" />

View File

@ -32,10 +32,10 @@
<StackPanel Orientation="Horizontal"
HorizontalAlignment="Center"
Spacing="10"
Margin="0,10,0,0">
Margin="0,10,10,0">
<Button Content="💾 Speichern"
Click="SpeichernButton_Click"
Width="100" />
Width="105" />
<Button Content="❌ Abbrechen"
Click="AbbrechenButton_Click"
Width="100" />

View File

@ -17,7 +17,7 @@ public partial class PasswortAendernDialog : Window
private readonly User _user;
/// <summary>
/// Parameterloser Konstruktor für Avalonia (z.B. für Preview, AVLN:0005-Fix).
/// Parameterloser Konstruktor für Avalonia (z.B. für Preview, AVLN:0005-Fix).
/// ⚠ Wird nur für Entwicklungszwecke oder Design-Time genutzt.
/// </summary>
public PasswortAendernDialog() : this(new User { Username = "DemoUser", Role = "Mitarbeiter" })