MainWindow.xaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Window x:Class="kursach_2._0.MainWindow"
  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:kursach_2._0"
  7. mc:Ignorable="d"
  8. Title="Дилерская компания" Height="450" Width="350" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="1.5*"/>
  12. <RowDefinition Height="0.5*"/>
  13. <RowDefinition Height="0.5*"/>
  14. <RowDefinition/>
  15. <RowDefinition Height="0.5*"/>
  16. <RowDefinition/>
  17. <RowDefinition Height="1.5*"/>
  18. </Grid.RowDefinitions>
  19. <Rectangle Fill="#8aabdd" Grid.Row="0" Stroke="Gray"/>
  20. <Label Content="Авторизация" Grid.Row="0"
  21. HorizontalAlignment="Center" VerticalAlignment="Center"
  22. FontFamily="Montserrat Medium" FontSize="36"/>
  23. <TextBlock Text="Логин" Grid.Row="2"
  24. Margin="15, 0, 0, 0" VerticalAlignment="Center"
  25. FontFamily="Montserrat Light" FontSize="16"/>
  26. <TextBox Grid.Row="3"
  27. Margin="15" VerticalContentAlignment="Center"
  28. FontFamily="Montserrat Light" FontSize="16"/>
  29. <TextBlock Text="Пароль" Grid.Row="4"
  30. Margin="15, 0, 0, 0" VerticalAlignment="Center"
  31. FontFamily="Montserrat Light" FontSize="16"/>
  32. <PasswordBox Grid.Row="5"
  33. Margin="15" VerticalContentAlignment="Center"
  34. FontFamily="Montserrat Light" FontSize="16"/>
  35. <Button Grid.Row="6"
  36. Content="Войти"
  37. Margin="45, 30" FontFamily="Montserrat Medium" FontSize="20"/>
  38. </Grid>
  39. </Window>