123456789101112131415161718192021222324252627282930313233343536373839 |
- <Page x:Class="PP_Ven_MosS.Avtorization"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PP_Ven_MosS"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="Avtorization">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="150"></RowDefinition>
- <RowDefinition Height="3*"></RowDefinition>
- <RowDefinition Height="50"></RowDefinition>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="150"></ColumnDefinition>
- <ColumnDefinition Width="3*"></ColumnDefinition>
- <ColumnDefinition Width="150"></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <StackPanel Grid.Column="1" Grid.Row="0">
- <Image Source="/Images/minin.png" Width="800" Height="150"></Image>
- </StackPanel>
- <Border Grid.Column="1" Grid.Row="1" BorderBrush="#FF0000" BorderThickness="4" CornerRadius="10">
- <StackPanel Orientation="Vertical">
- <TextBlock Text="Авторизация" Width="200" HorizontalAlignment="Center" FontWeight="Bold" FontSize="30" Margin="0,30,0,0"></TextBlock>
- <GroupBox Header="Логин" FontSize="20" FontWeight="Bold" Style="{StaticResource GBSt}">
- <TextBox Name="TBLog"></TextBox>
- </GroupBox>
- <GroupBox Header="Пароль" FontSize="20" FontWeight="Bold" Style="{StaticResource GBSt}">
- <PasswordBox Name="PBPass"></PasswordBox>
- </GroupBox>
- <Button Name="Sign" Content="Войти" FontSize="20" Style="{StaticResource BtnSt}" Click="Sign_Click" Margin="0,20,0,0"></Button>
- <Button Name="Registration" Content="Зарегистрироваться" FontSize="20" Margin="0,20,0,0" Style="{StaticResource BtnSt}" Click="Registration_Click"></Button>
- </StackPanel>
- </Border>
- </Grid>
- </Page>
|