1234567891011121314151617181920212223 |
- <Window x:Class="KursachMukha692gr.Registration"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:KursachMukha692gr"
- mc:Ignorable="d"
- xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
- Title="Авторизация" Height="370" Width="450" WindowStartupLocation="CenterScreen" VerticalAlignment="Bottom" HorizontalAlignment="Stretch" ScrollViewer.HorizontalScrollBarVisibility="Disabled">
- <Grid Background="#028E9B">
- <Border MinWidth="400" MaxWidth="400" Margin="15,0,15,10" Background="#35C0CD" VerticalAlignment="Bottom" Padding="30" Height="319">
- <StackPanel>
- <TextBlock Text="Авторизация администратора" HorizontalAlignment="Center" FontSize="20" Margin="32,0,31,-5"/>
- <Grid Margin="0 0 0 20"/>
- <TextBox x:Name ="Login" materialDesign:HintAssist.Hint="Введите логин" Style="{StaticResource MaterialDesignFloatingHintTextBox}"/>
- <PasswordBox x:Name ="pass1" materialDesign:HintAssist.Hint="Введите пароль" Style="{StaticResource MaterialDesignFloatingHintPasswordBox}"/>
- <Button Content="Войти" Margin="0,10" Background="#006363" Click="Button_Click" Height="30"/>
- <Button Content="Назад" Background="#006363" Click="Button_Click_Back" Height="30" Margin="0,10" />
- <Button Content="Сменить пароль" Background="#006363" Click="Button_Click_Smena" Height="30" Margin="0,10"/>
- </StackPanel>
- </Border>
- </Grid>
- </Window>
|