LoginPage.xaml 1.2 KB

123456789101112131415161718192021222324
  1. <Page x:Class="AutoServiceSultik.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:AutoServiceSultik.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Авторизация">
  10. <Grid>
  11. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Width="250" Height="150">
  12. <DockPanel Margin="10">
  13. <Label FontSize="15" Content="Логин: "/>
  14. <TextBox HorizontalAlignment="Right" Width="150" x:Name="tbLogin" FontSize="15"/>
  15. </DockPanel>
  16. <DockPanel Margin="10">
  17. <Label FontSize="15" Content="Пароль: "/>
  18. <PasswordBox HorizontalAlignment="Right" Width="150" x:Name="tbPass" FontSize="15"/>
  19. </DockPanel>
  20. <Button Background="Orange" FontSize="15" Foreground="#FFFFE1" Click="Login_Click" Content="Войти" HorizontalAlignment="Right" Width="180"/>
  21. </StackPanel>
  22. </Grid>
  23. </Page>