12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <Window x:Class="Test.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:Test"
- mc:Ignorable="d"
- Title="EmployeeWindow" Height="650" Width="1000" WindowStyle="None" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" Background="#FFE1E4FF" Icon="Images/beauty_logo.ico">
- <Grid>
- <DataGrid HorizontalAlignment="Left" Height="452" Margin="37,92,0,0" VerticalAlignment="Top" Width="474"/>
- <Label Content="Сотрудники" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="36" Margin="155,38,629,558" Width="216" Height="54"/>
- <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"/>
- <Image HorizontalAlignment="Left" Height="108" Margin="609,10,0,0" VerticalAlignment="Top" Width="110" Source="Images/beauty_logo.png"/>
- <Label Content=""Бровушка"" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="48" Margin="719,26,10,551" Height="73" Width="271"/>
- <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"/>
- <Label Content="Фамилия" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="539,152,351,464" Width="110"/>
- <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"/>
- <Label Content="Имя" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="539,212,351,404" Width="110"/>
- <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"/>
- <Label Content="Отчество" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="539,272,351,344" Width="110"/>
- <Label Content="Роль" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="539,336,351,280" Width="110"/>
- <Label Content="Смена" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="539,402,351,214" Width="110"/>
- <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"/>
- <ComboBox HorizontalAlignment="Left" Margin="539,370,0,0" VerticalAlignment="Top" Width="180" BorderBrush="White" Height="26">
- <ComboBox.Background>
- <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
- <GradientStop Color="#FFF0F0F0" Offset="0"/>
- <GradientStop Color="#FFE1E4FF" Offset="1"/>
- </LinearGradientBrush>
- </ComboBox.Background>
- </ComboBox>
- <ComboBox HorizontalAlignment="Left" Margin="539,436,0,0" VerticalAlignment="Top" Width="180" BorderBrush="White" Height="26">
- <ComboBox.Background>
- <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
- <GradientStop Color="#FFF0F0F0" Offset="0"/>
- <GradientStop Color="#FFE1E4FF" Offset="1"/>
- </LinearGradientBrush>
- </ComboBox.Background>
- </ComboBox>
- <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"/>
- <Border BorderBrush="#FFFF4A6D" BorderThickness="1" HorizontalAlignment="Left" Height="168" Margin="798,228,0,0" VerticalAlignment="Top" Width="156"/>
- <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"/>
- <Label Content="Фотография" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="814,194,64,422" Width="122"/>
- </Grid>
- </Window>
|