LoginWindow.xaml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Window x:Class="WpfApp1.LoginWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="Авторизация" Height="380" Width="380"
  5. WindowStartupLocation="CenterScreen"
  6. ResizeMode="NoResize">
  7. <Grid Margin="30">
  8. <Grid.RowDefinitions>
  9. <RowDefinition Height="Auto"/>
  10. <RowDefinition Height="Auto"/>
  11. <RowDefinition Height="Auto"/>
  12. <RowDefinition Height="Auto"/>
  13. <RowDefinition Height="Auto"/>
  14. <RowDefinition Height="Auto"/>
  15. <RowDefinition Height="*"/>
  16. </Grid.RowDefinitions>
  17. <!-- Заголовок -->
  18. <TextBlock Text="Вход в систему" FontSize="20" FontWeight="Bold"
  19. HorizontalAlignment="Center" Margin="0,0,0,25"/>
  20. <!-- Логин -->
  21. <TextBlock Text="Логин:" Grid.Row="1" Margin="0,0,0,5"/>
  22. <TextBox x:Name="txtLogin" Grid.Row="2" Height="30" Margin="0,0,0,15"/>
  23. <!-- Пароль -->
  24. <TextBlock Text="Пароль:" Grid.Row="3" Margin="0,0,0,5"/>
  25. <PasswordBox x:Name="txtPassword" Grid.Row="4" Height="30" Margin="0,0,0,20"/>
  26. <!-- Ошибка -->
  27. <TextBlock x:Name="lblError" Grid.Row="5" Foreground="Red"
  28. TextAlignment="Center" Margin="0,0,0,15" TextWrapping="Wrap"/>
  29. <!-- Кнопка -->
  30. <Button Content="Войти" Grid.Row="6" Width="120" Height="35"
  31. Click="BtnLogin_Click" IsDefault="True"
  32. HorizontalAlignment="Center" VerticalAlignment="Top"/>
  33. </Grid>
  34. </Window>