Files
point_of_sale/PointOfSale/Pos.Ui/Pos/Setting/Employee/DeleteEmployeeWindow.xaml
Bjarne Pedersen 41e23b6184 Initial commit
Initial commit til Git.
V2 er deployed
2026-06-13 17:31:50 +02:00

16 lines
1019 B
XML

<Window x:Class="Pos.Setting.DeleteEmployeeWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Pos.Setting"
mc:Ignorable="d"
Title="Arkivere medarbejder" Height="300" Width="300" Icon="../../Icons/employee.png">
<StackPanel HorizontalAlignment="Stretch" >
<TextBlock Text="Ønsker du at arkivere:" Style="{StaticResource TextBox}"/>
<TextBlock Name="txtDelEmployee" Style="{StaticResource TextBox}" Foreground="Red" FontWeight="ExtraBold" />
<Button Content="Ja" Name="btnYes" Style="{StaticResource Buttons}" Margin="10,10,10,30" Click="btnYes_Click"></Button>
<Button Content="Nej" Name="btnNo" Style="{StaticResource Buttons}" Click="btnNo_Click"></Button>
</StackPanel>
</Window>