AddEmployeeWindow.xaml 3.3 KB

123456789101112131415161718192021222324252627
  1. <Window x:Class="Cafe.AddWindows.AddEmployeeWindow"
  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.AddWindows"
  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,104,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
  11. <TextBox Name="Login" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,164,0,0" Height="60" Width="550" Background="White" FontSize="36"/>
  12. <Label Content="Пароль:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,104,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
  13. <PasswordBox Name="Password" VerticalAlignment="Top" Margin="925,164,0,0" Height="60" FontSize="36" HorizontalAlignment="Left" Width="550"/>
  14. <Label Content="Фамилия:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,246,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
  15. <TextBox Name="SecondName" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,306,0,0" Height="60" Width="550" Background="White" FontSize="36" TextChanged="TextChanged"/>
  16. <Label Content="Имя:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,246,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
  17. <TextBox Name="FirstName" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,306,0,0" Height="60" Width="550" Background="White" FontSize="36" TextChanged="TextChanged"/>
  18. <Label Content="Отчество:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,388,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
  19. <TextBox Name="MiddleName" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,448,0,0" Height="60" Width="550" Background="White" FontSize="36" TextChanged="TextChanged"/>
  20. <Label Content="Почта:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,388,0,0" Foreground="White" Height="60" Width="180" FontSize="36"/>
  21. <TextBox Name="Email" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="925,448,0,0" Height="60" Width="550" Background="White" FontSize="36"/>
  22. <Button Name="RegistrationButton" Content="Зарегистрировать" VerticalAlignment="Top" HorizontalAlignment="Center" Height="60" Width="360" Margin="0,746,0,0" FontSize="36" Click="RegistrationClick"/>
  23. <Button x:Name="BackButton" Content="Назад" HorizontalAlignment="Left" Margin="20,17,0,0" VerticalAlignment="Top" Height="39" Width="140" FontSize="25" Click="BackButtonClick"/>
  24. <Label Content="Должность:" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="125,530,0,0" Foreground="White" Height="60" Width="200" FontSize="36"/>
  25. <ComboBox x:Name="RoleBox" Height="60" Width="550" HorizontalAlignment="Left" Margin="125,590,0,0" VerticalAlignment="Top" Foreground="Black" FontSize="36"/>
  26. </Grid>
  27. </Window>