AuthorizationWindow.xaml 2.1 KB

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