auth_test.xaml 1.3 KB

1234567891011121314151617181920212223
  1. <Window x:Class="veloprokat2.auth_test"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:veloprokat2"
  7. mc:Ignorable="d"
  8. Title="Авторизация тест" WindowState="Maximized" Icon="mountain_bike_sport_icon_123970.ico">
  9. <Grid Background="#EAF4F4">
  10. <Border MinWidth="400" Margin="15" Background="#FFFF" VerticalAlignment="Center" Padding="30" MaxWidth="550" CornerRadius="20">
  11. <Border.Effect>
  12. <DropShadowEffect BlurRadius="30" Color="LightGray" ShadowDepth="0"/>
  13. </Border.Effect>
  14. <StackPanel>
  15. <TextBlock Text="Компания 'Велопробег'" FontSize="30" FontWeight="Bold" Margin="0 0 20 0" HorizontalAlignment="Center"/>
  16. <TextBox Name="Login" Text="Введите логин"/>
  17. <PasswordBox Name="Pass"/>
  18. <Button Content="Войти" Margin="0 20 0 0" Click="Button_click"/>
  19. <Button Content="Выйти из программы" Margin="0 20 0 0"/>
  20. </StackPanel>
  21. </Border>
  22. </Grid>
  23. </Window>