12345678910111213141516171819202122232425262728 |
- <Page x:Class="Практическая__5.AuthorizationUser"
- 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:Практическая__5"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="AuthorizationUser">
- <Viewbox>
- <Grid Margin="10" Width="300" Height="550">
- <StackPanel VerticalAlignment="Center">
- <TextBlock Style="{StaticResource TBkHeader}">Авторизация</TextBlock>
- <GroupBox Header="Введите логин" Style="{StaticResource GBRegUser}" Width="290">
- <TextBox Name="TBxLogin" Style="{StaticResource TBxRegUser}"></TextBox>
- </GroupBox>
- <GroupBox Header="Введите пароль" Style="{StaticResource GBRegUser}" Width="290">
- <PasswordBox Name="PBPassword" Style="{StaticResource PBRegUser}" ></PasswordBox>
- </GroupBox>
- <Button Name="BTAutUser" Click="BTAutUserClick" Style="{StaticResource BTUsually}">Авторизироваться</Button>
- <TextBlock Style="{StaticResource TBkOtherTextClick}">или</TextBlock>
- <Button Name="BTRegUser" Click="BTRegUserClick" Style="{StaticResource BTnoBack}">Зарегистрироваться</Button>
- </StackPanel>
- </Grid>
- </Viewbox>
-
- </Page>
|