RedactAuth.xaml 1.6 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="SneakersSkakunov.RedactAuth"
  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:SneakersSkakunov"
  7. mc:Ignorable="d"
  8. Title="RedactAuth" Height="450" Width="800">
  9. <Grid>
  10. <StackPanel Width="250" VerticalAlignment="Center">
  11. <TextBlock Margin="10,10,0,0" Foreground="#292929" >Логин</TextBlock>
  12. <TextBox BorderThickness="2" Height="25" BorderBrush="#292929" Background="#f5f5f5" Name="lg"></TextBox>
  13. <TextBlock Margin="10,10,0,0" Foreground="#292929" >Пароль</TextBlock>
  14. <TextBox BorderThickness="2" Height="25" BorderBrush="#292929" Background="#f5f5f5" Name="pss"></TextBox>
  15. <Border BorderThickness="2" CornerRadius="5" BorderBrush="#292929" Background="White" Height="30" Margin="0,15,0,0">
  16. <Button Background="#0000" BorderBrush="#0000" Foreground="#292929" FontSize="14" Click="FixChange">Изменить логин и пароль</Button>
  17. </Border>
  18. <Border BorderThickness="2" CornerRadius="5" BorderBrush="#292929" Background="White" Width="250" Height="30" Margin="0,5,0,0">
  19. <Button Background="#0000" BorderBrush="#0000" Foreground="#292929" Click="Back">Вернуться</Button>
  20. </Border>
  21. </StackPanel>
  22. </Grid>
  23. </Window>