33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="ChronoFlow.View.Admin.ConfirmDialog"
|
|
Width="400" Height="200"
|
|
Title="Bestätigung">
|
|
|
|
<!-- 📦 Haupt-Layout: vertikale Anordnung mit Abstand -->
|
|
<StackPanel Margin="20" Spacing="10">
|
|
|
|
<!-- ❓ Frage-Text (wird im Code gesetzt, z.B. "Möchten Sie das wirklich löschen?") -->
|
|
<TextBlock x:Name="FrageText"
|
|
Text="Sind Sie sicher?"
|
|
FontSize="16"
|
|
FontWeight="Bold"
|
|
TextWrapping="Wrap" />
|
|
|
|
<!-- 🔘 Buttons für Ja / Nein -->
|
|
<StackPanel Orientation="Horizontal"
|
|
HorizontalAlignment="Center"
|
|
Spacing="10">
|
|
|
|
<!-- ✅ Bestätigen -->
|
|
<Button Content="✅ Ja"
|
|
Width="80"
|
|
Click="JaButton_Click" />
|
|
|
|
<!-- ❌ Abbrechen -->
|
|
<Button Content="❌ Nein"
|
|
Width="80"
|
|
Click="NeinButton_Click" />
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</Window> |