demo_blagodat/demo_blagodat/Functions/DeleteEmployee.axaml
2025-04-28 10:26:46 +03:00

42 lines
1.5 KiB
XML

<Window xmlns="https://github.com/avaloniaui"
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"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="demo_blagodat.DeleteEmployee"
x:CompileBindings="False"
Title="Удалить сотрудника">
<DockPanel>
<ScrollViewer>
<StackPanel Orientation="Vertical">
<StackPanel HorizontalAlignment="Center" Orientation="Vertical" VerticalAlignment="Center">
<Button Content="Удалить Сотрудника" Click="deleteEmployee"/>
<Button Content="Вернуться назад" Click="ExitClik"/>
</StackPanel>
<StackPanel HorizontalAlignment="Center" Orientation="Vertical">
<TextBlock x:Name="MesDelError" Text="" Foreground="Red"/>
<TextBlock x:Name="MesDel" Text="" Foreground="Green"/>
</StackPanel>
<Border Background="Red"
CornerRadius="10"
Padding="20"
Margin="20"
Width="400"
Height="500">
<ScrollViewer>
<ListBox Name="Items" SelectionChanged="ListBox_SelectionChanged">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding EmployeesName}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</ScrollViewer>
</Border>
</StackPanel>
</ScrollViewer>
</DockPanel>
</Window>