123456789101112131415161718192021222324252627 |
- <Window x:Class="Cafe.ElementsWindows.EmployeeWindow"
- 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:Cafe.ElementsWindows"
- mc:Ignorable="d"
- Title="Сотрудник" Height="900" Width="1600" WindowStartupLocation="CenterScreen" ResizeMode="CanMinimize">
- <Grid>
- <Label Content="Логин:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,188,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
- <Label Name="Login" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,248,0,0" Height="60" Width="550" Foreground="White" FontSize="36"/>
- <Label Content="Должность:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,188,0,0" Foreground="White" Height="60" Width="200" FontSize="36"/>
- <Label Name="Role" VerticalAlignment="Top" Margin="925,248,0,0" Height="60" FontSize="36" Foreground="White" HorizontalAlignment="Left" Width="550"/>
- <Label Content="Фамилия:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,330,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
- <Label Name="SecondName" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,390,0,0" Height="60" Width="550" Foreground="White" FontSize="36"/>
- <Label Content="Имя:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,330,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
- <Label Name="FirstName" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,390,0,0" Height="60" Width="550" Foreground="White" FontSize="36"/>
- <Label Content="Отчество:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,472,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
- <Label Name="MiddleName" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,532,0,0" Height="60" Width="550" Foreground="White" FontSize="36"/>
- <Label Content="Почта:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,472,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
- <Label Name="Email" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,532,0,0" Height="60" Width="550" Foreground="White" FontSize="36"/>
- <Label Content="Статус:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,614,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
- <Label x:Name="IsFired" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,674,0,0" Height="60" Width="550" Foreground="White" FontSize="36"/>
- <Button Name="FireButton" Content="Уволить" VerticalAlignment="Top" HorizontalAlignment="Left" Height="60" Width="184" Margin="1320,766,0,0" FontSize="36" Click="FireButtonClick"/>
- <Button x:Name="BackButton" Content="Назад" HorizontalAlignment="Left" Margin="20,17,0,0" VerticalAlignment="Top" Height="39" Width="140" FontSize="25" Click="BackButtonClick"/>
- </Grid>
- </Window>
|