AuthorizationUser.xaml 1.6 KB

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