EmployeeWindow.xaml 5.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Window x:Class="Test.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:Test"
  7. mc:Ignorable="d"
  8. Title="EmployeeWindow" Height="650" Width="1000" WindowStyle="None" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" Background="#FFE1E4FF" Icon="Images/beauty_logo.ico">
  9. <Grid>
  10. <DataGrid HorizontalAlignment="Left" Height="452" Margin="37,92,0,0" VerticalAlignment="Top" Width="474"/>
  11. <Label Content="Сотрудники" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="36" Margin="155,38,629,558" Width="216" Height="54"/>
  12. <Button Content="Добавить сотрудника" HorizontalAlignment="Center" VerticalAlignment="Center" Width="216" Height="30" Margin="155,549,629,71" BorderBrush="White" Background="#FFFF4A6D" Foreground="White" FontFamily="Tahoma" FontSize="18"/>
  13. <Image HorizontalAlignment="Left" Height="108" Margin="609,10,0,0" VerticalAlignment="Top" Width="110" Source="Images/beauty_logo.png"/>
  14. <Label Content="&quot;Бровушка&quot;" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="48" Margin="719,26,10,551" Height="73" Width="271"/>
  15. <TextBox HorizontalAlignment="Center" Height="26" TextWrapping="Wrap" VerticalAlignment="Center" Width="180" Foreground="Black" BorderBrush="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" VerticalContentAlignment="Bottom" Margin="539,186,281,438"/>
  16. <Label Content="Фамилия" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="539,152,351,464" Width="110"/>
  17. <TextBox HorizontalAlignment="Center" Height="26" TextWrapping="Wrap" VerticalAlignment="Center" Width="180" Foreground="Black" BorderBrush="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" VerticalContentAlignment="Bottom" Margin="539,246,281,378"/>
  18. <Label Content="Имя" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="539,212,351,404" Width="110"/>
  19. <TextBox HorizontalAlignment="Center" Height="26" TextWrapping="Wrap" VerticalAlignment="Center" Width="180" Foreground="Black" BorderBrush="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" VerticalContentAlignment="Bottom" Margin="539,306,281,318"/>
  20. <Label Content="Отчество" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="539,272,351,344" Width="110"/>
  21. <Label Content="Роль" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="539,336,351,280" Width="110"/>
  22. <Label Content="Смена" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="539,402,351,214" Width="110"/>
  23. <Button Content="Подтвердить" HorizontalAlignment="Center" VerticalAlignment="Center" Width="153" Height="30" Margin="685,549,162,71" BorderBrush="White" Background="#FFFF4A6D" Foreground="White" FontFamily="Tahoma" FontSize="18"/>
  24. <ComboBox HorizontalAlignment="Left" Margin="539,370,0,0" VerticalAlignment="Top" Width="180" BorderBrush="White" Height="26">
  25. <ComboBox.Background>
  26. <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
  27. <GradientStop Color="#FFF0F0F0" Offset="0"/>
  28. <GradientStop Color="#FFE1E4FF" Offset="1"/>
  29. </LinearGradientBrush>
  30. </ComboBox.Background>
  31. </ComboBox>
  32. <ComboBox HorizontalAlignment="Left" Margin="539,436,0,0" VerticalAlignment="Top" Width="180" BorderBrush="White" Height="26">
  33. <ComboBox.Background>
  34. <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
  35. <GradientStop Color="#FFF0F0F0" Offset="0"/>
  36. <GradientStop Color="#FFE1E4FF" Offset="1"/>
  37. </LinearGradientBrush>
  38. </ComboBox.Background>
  39. </ComboBox>
  40. <Button Content="Назад" HorizontalAlignment="Center" VerticalAlignment="Center" Width="113" Height="30" Margin="10,610,877,10" BorderBrush="White" Background="#FFFF4A6D" Foreground="White" FontFamily="Tahoma" FontSize="18"/>
  41. <Border BorderBrush="#FFFF4A6D" BorderThickness="1" HorizontalAlignment="Left" Height="168" Margin="798,228,0,0" VerticalAlignment="Top" Width="156"/>
  42. <Button Content="Выбрать" HorizontalAlignment="Center" VerticalAlignment="Center" Width="111" Height="30" Margin="819,406,70,214" BorderBrush="White" Background="#FFFF4A6D" Foreground="White" FontFamily="Tahoma" FontSize="18"/>
  43. <Label Content="Фотография" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="814,194,64,422" Width="122"/>
  44. </Grid>
  45. </Window>