MainWindow.xaml 2.5 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="Test.MainWindow"
  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="MainWindow" Height="650" Width="1000" WindowStyle="None" WindowStartupLocation="CenterScreen" Icon="Images/beauty_logo.ico" ResizeMode="NoResize">
  9. <Grid>
  10. <Image HorizontalAlignment="Left" Height="448" Margin="19,26,0,0" VerticalAlignment="Top" Width="514" Source="Images/Силуэт.png"/>
  11. <StackPanel HorizontalAlignment="Left" Height="369" Margin="303,177,0,0" VerticalAlignment="Top" Width="389" Background="#FFE1E4FF"/>
  12. <TextBox HorizontalAlignment="Center" Height="26" TextWrapping="Wrap" VerticalAlignment="Center" Width="181" Foreground="Black" BorderBrush="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" VerticalContentAlignment="Bottom" Margin="406,328,405,288"/>
  13. <Label Content="Авторизация" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="36" Margin="385,222,385,368" Width="222" Height="52"/>
  14. <PasswordBox HorizontalAlignment="Left" Margin="406,386,0,0" VerticalAlignment="Top" Width="180" Height="26" BorderBrush="#FFFF4A6D"/>
  15. <Button Content="Войти" HorizontalAlignment="Center" VerticalAlignment="Center" Width="98" Height="31" Margin="447,438,447,173" BorderBrush="White" Background="#FFFF4A6D" Foreground="White" FontFamily="Tahoma" FontSize="18"/>
  16. <Image HorizontalAlignment="Left" Height="108" Margin="609,10,0,0" VerticalAlignment="Top" Width="110" Source="Images/beauty_logo.png"/>
  17. <Label Content="&quot;Бровушка&quot;" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="48" Margin="719,26,2,543" Height="73" Width="271"/>
  18. <Label Content="Логин" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="406,294,521,314" Width="65" Height="34"/>
  19. <Label Content="Пароль" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="406,352,497,256" Width="89" Height="34"/>
  20. </Grid>
  21. </Window>