Auth.xaml 1.6 KB

123456789101112131415161718192021222324
  1. <Window x:Class="veloprokat2.Auth"
  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. xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
  9. Title="Авторизация" WindowState="Maximized" Icon="mountain_bike_sport_icon_123970.ico">
  10. <Grid Background="#EAF4F4">
  11. <Border MinWidth="400" Margin="15" Background="#FFFF" VerticalAlignment="Center" Padding="30" MaxWidth="550" CornerRadius="20">
  12. <Border.Effect>
  13. <DropShadowEffect BlurRadius="30" Color="LightGray" ShadowDepth="0"/>
  14. </Border.Effect>
  15. <StackPanel>
  16. <TextBlock Text="Компания «Велопробег»" FontSize="30" FontWeight="Bold" Margin="0 0 20 0" HorizontalAlignment="Center"/>
  17. <TextBox Name="Login" materialDesign:HintAssist.Hint="Введите логин" Style="{StaticResource MaterialDesignFloatingHintTextBox}"/>
  18. <PasswordBox Name="Pass" materialDesign:HintAssist.Hint="Введите пароль" Style="{StaticResource MaterialDesignFloatingHintPasswordBox}"/>
  19. <Button Content="Войти" Margin="0 20 0 0" Click="Voyti"/>
  20. <Button Content="Выйти из программы" Margin="0 20 0 0" Click="Viyti"/>
  21. </StackPanel>
  22. </Border>
  23. </Grid>
  24. </Window>