RegistrationTEST.xaml 1.3 KB

1234567891011121314151617181920
  1. <Window x:Class="KursachMukha692gr.RegistrationTEST"
  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. Title="Авторизация" Height="370" Width="450" WindowStartupLocation="CenterScreen" VerticalAlignment="Bottom" HorizontalAlignment="Stretch" ScrollViewer.HorizontalScrollBarVisibility="Disabled">
  9. <Grid Background="#028E9B">
  10. <Border MinWidth="400" MaxWidth="400" Margin="15,0,15,10" Background="#35C0CD" VerticalAlignment="Bottom" Padding="30" Height="319">
  11. <StackPanel>
  12. <TextBlock Text="Авторизация администратора" HorizontalAlignment="Center" FontSize="20" Margin="32,0,31,-5"/>
  13. <Grid Margin="0 0 0 20"/>
  14. <TextBox x:Name ="Login" Text="Введите логин"/>
  15. <PasswordBox x:Name ="pass1" />
  16. <Button Content="Войти" Margin="0,10" Background="#006363" Click="Button_Click" Height="30"/>
  17. </StackPanel>
  18. </Border>
  19. </Grid>
  20. </Window>