16 lines
1019 B
XML
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>
|