Registration.xaml 1.8 KB

1234567891011121314151617181920212223
  1. <Window x:Class="KursachMukha692gr.Registration"
  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:KursachMukha692gr"
  7. mc:Ignorable="d"
  8. xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
  9. Title="Авторизация" Height="370" Width="450" WindowStartupLocation="CenterScreen" VerticalAlignment="Bottom" HorizontalAlignment="Stretch" ScrollViewer.HorizontalScrollBarVisibility="Disabled">
  10. <Grid Background="#028E9B">
  11. <Border MinWidth="400" MaxWidth="400" Margin="15,0,15,10" Background="#35C0CD" VerticalAlignment="Bottom" Padding="30" Height="319">
  12. <StackPanel>
  13. <TextBlock Text="Авторизация администратора" HorizontalAlignment="Center" FontSize="20" Margin="32,0,31,-5"/>
  14. <Grid Margin="0 0 0 20"/>
  15. <TextBox x:Name ="Login" materialDesign:HintAssist.Hint="Введите логин" Style="{StaticResource MaterialDesignFloatingHintTextBox}"/>
  16. <PasswordBox x:Name ="pass1" materialDesign:HintAssist.Hint="Введите пароль" Style="{StaticResource MaterialDesignFloatingHintPasswordBox}"/>
  17. <Button Content="Войти" Margin="0,10" Background="#006363" Click="Button_Click" Height="30"/>
  18. <Button Content="Назад" Background="#006363" Click="Button_Click_Back" Height="30" Margin="0,10" />
  19. <Button Content="Сменить пароль" Background="#006363" Click="Button_Click_Smena" Height="30" Margin="0,10"/>
  20. </StackPanel>
  21. </Border>
  22. </Grid>
  23. </Window>