LoginWindow.xaml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <Window x:Class="ComputerShopWpf.Views.LoginWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="Вход в систему"
  5. Height="460"
  6. Width="560"
  7. MinHeight="440"
  8. MinWidth="540"
  9. WindowStartupLocation="CenterScreen"
  10. ResizeMode="CanMinimize">
  11. <Grid Background="{StaticResource BackgroundBrush}">
  12. <Border Width="430"
  13. Padding="34"
  14. Background="{StaticResource PanelBrush}"
  15. BorderBrush="{StaticResource BorderBrush}"
  16. BorderThickness="1"
  17. VerticalAlignment="Center"
  18. HorizontalAlignment="Center">
  19. <StackPanel>
  20. <TextBlock Text="Продажа компьютерной техники"
  21. FontSize="24"
  22. FontWeight="SemiBold"
  23. TextAlignment="Center"
  24. TextWrapping="Wrap"
  25. Margin="0,0,0,24"/>
  26. <TextBlock Text="Логин"/>
  27. <TextBox x:Name="LoginTextBox"/>
  28. <TextBlock Text="Пароль"/>
  29. <PasswordBox x:Name="UserPasswordBox"/>
  30. <TextBlock x:Name="ErrorTextBlock"
  31. Foreground="{StaticResource ErrorBrush}"
  32. TextWrapping="Wrap"
  33. MinHeight="48"
  34. Margin="0,6,0,10"/>
  35. <Button x:Name="LoginButton"
  36. Content="Войти"
  37. Height="38"
  38. HorizontalAlignment="Stretch"
  39. Click="LoginButton_Click"/>
  40. </StackPanel>
  41. </Border>
  42. </Grid>
  43. </Window>