LoginPage.xaml 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. <Page x:Class="AutoservisDrive.Pages.LoginPage"
  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:AutoservisDrive.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Авторизация">
  10. <Grid>
  11. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
  12. <StackPanel Orientation="Horizontal">
  13. <TextBlock Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial" Text="Логин: "/>
  14. <Separator Width="33" Background="{x:Null}"/>
  15. <TextBox Name="TBoxLogin" Width="150" Height="20"/>
  16. </StackPanel>
  17. <Separator Height="15" Background="{x:Null}"/>
  18. <StackPanel Orientation="Horizontal">
  19. <TextBlock Text="Пароль: " Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial"/>
  20. <Separator Width="20" Background="{x:Null}"/>
  21. <PasswordBox Name="PBoxPassword" Width="150" Height="20"/>
  22. </StackPanel>
  23. <Separator Height="15" Background="{x:Null}"/>
  24. <Button Name="BtnLogin" Content="Войти" HorizontalAlignment="Right" Style="{StaticResource BackButton}" Width="150" Height="25" FontSize="16" Click="BtnLogin_Click"/>
  25. </StackPanel>
  26. </Grid>
  27. </Page>