Authorization.xaml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <Window x:Name="Page" x:Class="ROGOZ.Pages.Authorization"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:ROGOZ.Pages"
  7. mc:Ignorable="d"
  8. Height="445" Width="720"
  9. WindowStartupLocation="CenterScreen"
  10. ResizeMode="NoResize"
  11. WindowStyle="None"
  12. Background="Transparent"
  13. AllowsTransparency="True"
  14. MouseDown="Page_MouseDown">
  15. <Border CornerRadius="15">
  16. <Border.Background>
  17. <ImageBrush ImageSource="/Resources/Cotton Candy Clouds Mural Wallpaper - Murals Your Way.jpg" Stretch="Fill"/>
  18. </Border.Background>
  19. <Border CornerRadius="15">
  20. <Border.Background>
  21. <LinearGradientBrush StartPoint="0.5,1" EndPoint="0.5,3" Opacity="0.4">
  22. <GradientStop Color="#00BFFF" Offset="0"/>
  23. <GradientStop Color="#00416A" Offset="0.75"/>
  24. </LinearGradientBrush>
  25. </Border.Background>
  26. <Grid x:Name="grid" Cursor="">
  27. <Label Style="{StaticResource LabelStyle}" Foreground="#E3FDFD" Margin="0,45,0,0" VerticalAlignment="Top" Width="320" Height="65">
  28. АВТОРИЗАЦИЯ
  29. </Label>
  30. <Image Source="/Resources/logo.png" Width="160" Height="60" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="25,10,10,25"/>
  31. <!--<Image Source="/Resources/HatsuneMiku.png" Height="200" HorizontalAlignment="Left" VerticalAlignment="Bottom"/>-->
  32. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10,80,10,10">
  33. <StackPanel Orientation="Vertical">
  34. <TextBox Name="TBoxLogin" Tag="Логин" Style="{DynamicResource TextBoxStyle}"/>
  35. <Separator Height="15" Visibility="Hidden"/>
  36. <PasswordBox Name="PBoxPassword" Style="{DynamicResource PasswordBoxStyle}" PasswordChanged="PBoxPassword_PasswordChanged"/>
  37. </StackPanel>
  38. <Separator Height="15" Visibility="Hidden"/>
  39. <StackPanel>
  40. <Button Name="BtnLogin" Content="Войти" Style="{DynamicResource AuthoButtons}" Click="BtnLogin_Click"/>
  41. </StackPanel>
  42. </StackPanel>
  43. <TextBlock x:Name="WaterMarkerLabel" IsHitTestVisible="False" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,70,185,0" Text="Пароль" FontSize="25" FontFamily="Comic Sans MS" Foreground="Gray"/>
  44. <Button x:Name="btnClose" Style="{DynamicResource PanelButtonX}" Margin="5" Click="btnClose_Click">
  45. <Image Source="/Resources/Cross.png" IsHitTestVisible="False"/>
  46. </Button>
  47. <Button x:Name="btnMinimize" Style="{DynamicResource PanelButtonMin}" Margin="0,5,40,0" Click="btnMinimize_Click">
  48. <Image Source="/Resources/Minimize.png" IsHitTestVisible="False" />
  49. </Button>
  50. </Grid>
  51. </Border>
  52. </Border>
  53. </Window>