EmployeeWindow.xaml 3.2 KB

123456789101112131415161718192021222324252627
  1. <Window x:Class="Cafe.ElementsWindows.EmployeeWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Cafe.ElementsWindows"
  7. mc:Ignorable="d"
  8. Title="Сотрудник" Height="900" Width="1600" WindowStartupLocation="CenterScreen" ResizeMode="CanMinimize">
  9. <Grid>
  10. <Label Content="Логин:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,188,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
  11. <Label Name="Login" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,248,0,0" Height="60" Width="550" Foreground="White" FontSize="36"/>
  12. <Label Content="Должность:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,188,0,0" Foreground="White" Height="60" Width="200" FontSize="36"/>
  13. <Label Name="Role" VerticalAlignment="Top" Margin="925,248,0,0" Height="60" FontSize="36" Foreground="White" HorizontalAlignment="Left" Width="550"/>
  14. <Label Content="Фамилия:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,330,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
  15. <Label Name="SecondName" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,390,0,0" Height="60" Width="550" Foreground="White" FontSize="36"/>
  16. <Label Content="Имя:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,330,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
  17. <Label Name="FirstName" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,390,0,0" Height="60" Width="550" Foreground="White" FontSize="36"/>
  18. <Label Content="Отчество:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,472,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
  19. <Label Name="MiddleName" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,532,0,0" Height="60" Width="550" Foreground="White" FontSize="36"/>
  20. <Label Content="Почта:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,472,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
  21. <Label Name="Email" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,532,0,0" Height="60" Width="550" Foreground="White" FontSize="36"/>
  22. <Label Content="Статус:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,614,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
  23. <Label x:Name="IsFired" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,674,0,0" Height="60" Width="550" Foreground="White" FontSize="36"/>
  24. <Button Name="FireButton" Content="Уволить" VerticalAlignment="Top" HorizontalAlignment="Left" Height="60" Width="184" Margin="1320,766,0,0" FontSize="36" Click="FireButtonClick"/>
  25. <Button x:Name="BackButton" Content="Назад" HorizontalAlignment="Left" Margin="20,17,0,0" VerticalAlignment="Top" Height="39" Width="140" FontSize="25" Click="BackButtonClick"/>
  26. </Grid>
  27. </Window>