MainWindow.xaml 2.2 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="LoadedToTheGills.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:LoadedToTheGills"
  7. mc:Ignorable="d"
  8. Title="MainWindow" WindowStartupLocation="CenterScreen" Height="383" Width="290">
  9. <Grid>
  10. <Rectangle Fill="#FF3F3FA8" HorizontalAlignment="Left" Height="63" Stroke="Black" VerticalAlignment="Top" Width="282"/>
  11. <Label Content="Авторизация" FontFamily="Times New Roman" FontSize="24" Margin="73,10,38,289" BorderBrush="Black" Foreground="White">
  12. <Label.Effect>
  13. <DropShadowEffect/>
  14. </Label.Effect>
  15. </Label>
  16. <Rectangle Fill="#FF3F3FA8" HorizontalAlignment="Left" Height="63" Stroke="Black" VerticalAlignment="Bottom" Width="282" Margin="0,0,0,-3"/>
  17. <Label Content="Введите логин:" HorizontalAlignment="Left" Height="32" Margin="63,68,0,0" VerticalAlignment="Top" Width="153" FontFamily="Times New Roman" FontSize="20"/>
  18. <TextBox x:Name="txtBox1" HorizontalAlignment="Left" Height="32" Margin="10,105,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="255" FontFamily="Times New Roman" FontSize="20"/>
  19. <Label Content="Введите пароль:" HorizontalAlignment="Left" Height="32" Margin="63,142,0,0" VerticalAlignment="Top" Width="153" FontFamily="Times New Roman" FontSize="20"/>
  20. <PasswordBox x:Name="passBox1" HorizontalAlignment="Left" Margin="10,179,0,0" VerticalAlignment="Top" Width="255" Height="32" FontFamily="Times New Roman" FontSize="20"/>
  21. <Button Content="Войти" HorizontalAlignment="Left" VerticalAlignment="Top" Width="255" Margin="10,227,0,0" Height="48" FontFamily="Times New Roman" FontSize="22" Click="Button_Click"/>
  22. <Button Content="Регистрация" HorizontalAlignment="Left" Height="34" Margin="10,303,0,0" VerticalAlignment="Top" Width="255" FontFamily="Times New Roman" FontSize="18" Click="Button_Click_1"/>
  23. </Grid>
  24. </Window>