12345678910111213141516171819202122232425 |
- <Window x:Class="Test.MainWindow"
- 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="MainWindow" Height="650" Width="1000" WindowStyle="None" WindowStartupLocation="CenterScreen" Icon="Images/beauty_logo.ico" ResizeMode="NoResize">
- <Grid>
- <Image HorizontalAlignment="Left" Height="448" Margin="19,26,0,0" VerticalAlignment="Top" Width="514" Source="Images/Силуэт.png"/>
- <StackPanel HorizontalAlignment="Left" Height="369" Margin="303,177,0,0" VerticalAlignment="Top" Width="389" Background="#FFE1E4FF"/>
- <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"/>
- <Label Content="Авторизация" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="36" Margin="385,222,385,368" Width="222" Height="52"/>
- <PasswordBox HorizontalAlignment="Left" Margin="406,386,0,0" VerticalAlignment="Top" Width="180" Height="26" BorderBrush="#FFFF4A6D"/>
- <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"/>
- <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,2,543" Height="73" Width="271"/>
- <Label Content="Логин" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="406,294,521,314" Width="65" Height="34"/>
- <Label Content="Пароль" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="406,352,497,256" Width="89" Height="34"/>
- </Grid>
- </Window>
|