123456789101112131415161718192021222324252627282930313233 |
- <Window x:Class="CopyCenter.AuthorizationWindow"
- 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:CopyCenter"
- mc:Ignorable="d"
- Icon="200x200bb.jpg"
- Title="" Height="300" Width="450" WindowStartupLocation="CenterScreen" FontFamily="Century Gothic">
- <Grid>
- <Grid.Background>
- <ImageBrush ImageSource="i39C1W5IB.jpg"/>
- </Grid.Background>
- <TextBlock Text="Логин" Margin="10,77,387,153"/>
- <TextBlock Text="Пароль" Margin="10,125,378,108"/>
- <TextBlock Text="АВТОРИЗАЦИЯ" Margin="179,10,164,229"/>
- <TextBox Name="login" Grid.Row="0" Margin="109,72,39,164"/>
- <PasswordBox Name="password" Margin="109,120,39,117"/>
- <Button Grid.Column="0" Content="Вход" Click="AuthorizationClick" FontFamily="Century Gothic" Height="Auto" Margin="311,157,66,78" Width="Auto" Background="#FF138DE2" FontSize="14" Foreground="White"/>
- <Button Content="Зарегистрироваться" Click="Registration_Click" FontFamily="Century Gothic" Height="Auto" Margin="119,157,158,78" Width="Auto" Background="#FF138DE2" FontSize="14" Foreground="White"/>
- <StackPanel>
- <Image Margin="64,120,346,117" Source="key[1].png" Stretch="Fill"/>
- <Image Margin="64,-190,346,165" Source="1536306136_user[1].png" Stretch="Fill" Height="24" />
- <Image Margin="278,-270,124,229" Source="w256h2561384699897signup[1].png" Stretch="Fill" RenderTransformOrigin="7.7,0.75"/>
- </StackPanel>
- <Button HorizontalAlignment="Right" Margin="0,5,5,0" VerticalAlignment="Top" Width="40" Click="Exit_Click" Height="35">
- <StackPanel>
- <Image Source ="exit_png_456938.png" Height="32" Width="65"/>
- </StackPanel>
- </Button>
-
- </Grid>
- </Window>
|