|
@@ -4,29 +4,40 @@
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
xmlns:local="clr-namespace:Esoft.Pages"
|
|
|
- mc:Ignorable="d"
|
|
|
+ mc:Ignorable="d"
|
|
|
Height="445" Width="720"
|
|
|
ResizeMode="NoResize"
|
|
|
|
|
|
- Title="Авторизация в ESOFT" Background="#b3deff">
|
|
|
+ Title="Авторизация в Esoft" Background="#b3deff">
|
|
|
|
|
|
<Grid x:Name="grid" Cursor="">
|
|
|
|
|
|
- <Label Style="{StaticResource LabelStyle}" Margin="263,102,116,0" VerticalAlignment="Top" Height="65" FontFamily="Arial Black" FontWeight="Bold" FontStyle="Italic">
|
|
|
- АВТОРИЗАЦИЯ
|
|
|
+ <Label Style="{StaticResource LabelStyle}" Margin="263,86,237,0" VerticalAlignment="Top" Height="51" BorderBrush="#FF25AFD2" Content="АВТОРИЗАЦИЯ" FontSize="40">
|
|
|
+ <Label.OpacityMask>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="Black"/>
|
|
|
+ <GradientStop Color="#FF223DAB" Offset="1"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Label.OpacityMask>
|
|
|
+ <Label.Foreground>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="Black"/>
|
|
|
+ <GradientStop Color="#FF2B8FFF" Offset="1"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Label.Foreground>
|
|
|
</Label>
|
|
|
|
|
|
- <Image Source="C:\Users\Ильяс Шафигуллин\Desktop\logo.png" Width="160" Height="60" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="25,10,10,25"/>
|
|
|
+ <Image Source="/Resources/logo.png" Width="160" Height="60" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="25,10,10,25"/>
|
|
|
|
|
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10,80,10,10">
|
|
|
<StackPanel Orientation="Vertical">
|
|
|
- <TextBox Name="TBoxLogin" Tag="Логин" Style="{DynamicResource TextBoxStyle}" FontFamily="Arial Black" FontWeight="Bold"/>
|
|
|
+ <TextBox Name="TBoxLogin" Tag="Логин" Style="{DynamicResource TextBoxStyle}"/>
|
|
|
<Separator Height="15" Visibility="Hidden"/>
|
|
|
- <PasswordBox Name="PBoxPassword" Tag="Пароль" Style="{DynamicResource PasswordBoxStyle}" PasswordChar="*" FontFamily="Segoe UI Black" FontWeight="Bold" />
|
|
|
+ <TextBox Name="TBoxPassword" Tag="Пароль" Style="{DynamicResource TextBoxStyle}"/>
|
|
|
</StackPanel>
|
|
|
<Separator Height="15" Visibility="Hidden"/>
|
|
|
<StackPanel>
|
|
|
- <Button Name="BtnLogin" Content="Войти" Style="{DynamicResource AuthoButtons}" Click="BtnLogin_Click" FontFamily="Arial Black"/>
|
|
|
+ <Button Name="BtnLogin" Content="Войти" Style="{DynamicResource AuthoButtons}" Click="BtnLogin_Click" Foreground="#FF1414A9"/>
|
|
|
</StackPanel>
|
|
|
|
|
|
</StackPanel>
|