Avtorization.xaml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Page x:Class="PP_Ven_MosS.Avtorization"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PP_Ven_MosS"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Avtorization">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="150"></RowDefinition>
  13. <RowDefinition Height="3*"></RowDefinition>
  14. <RowDefinition Height="50"></RowDefinition>
  15. </Grid.RowDefinitions>
  16. <Grid.ColumnDefinitions>
  17. <ColumnDefinition Width="150"></ColumnDefinition>
  18. <ColumnDefinition Width="3*"></ColumnDefinition>
  19. <ColumnDefinition Width="150"></ColumnDefinition>
  20. </Grid.ColumnDefinitions>
  21. <StackPanel Grid.Column="1" Grid.Row="0">
  22. <Image Source="/Images/minin.png" Width="800" Height="150"></Image>
  23. </StackPanel>
  24. <Border Grid.Column="1" Grid.Row="1" BorderBrush="#FF0000" BorderThickness="4" CornerRadius="10">
  25. <StackPanel Orientation="Vertical">
  26. <TextBlock Text="Авторизация" Width="200" HorizontalAlignment="Center" FontWeight="Bold" FontSize="30" Margin="0,30,0,0"></TextBlock>
  27. <GroupBox Header="Логин" FontSize="20" FontWeight="Bold" Style="{StaticResource GBSt}">
  28. <TextBox Name="TBLog"></TextBox>
  29. </GroupBox>
  30. <GroupBox Header="Пароль" FontSize="20" FontWeight="Bold" Style="{StaticResource GBSt}">
  31. <PasswordBox Name="PBPass"></PasswordBox>
  32. </GroupBox>
  33. <Button Name="Sign" Content="Войти" FontSize="20" Style="{StaticResource BtnSt}" Click="Sign_Click" Margin="0,20,0,0"></Button>
  34. <Button Name="Registration" Content="Зарегистрироваться" FontSize="20" Margin="0,20,0,0" Style="{StaticResource BtnSt}" Click="Registration_Click"></Button>
  35. </StackPanel>
  36. </Border>
  37. </Grid>
  38. </Page>