IzmenPar.xaml 1.7 KB

123456789101112131415161718192021222324252627282930313233
  1. <Page x:Class="SSS.IzmenPar"
  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:SSS"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="IzmenPar">
  10. <Grid Background="#F5F5F5">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="*"></RowDefinition>
  13. <RowDefinition Height="35"></RowDefinition>
  14. </Grid.RowDefinitions>
  15. <StackPanel Margin="0,80,0,0" Width="300" Grid.Row="0">
  16. <TextBlock Text="Логин" Background="#0000" Margin="0,0,0,0"></TextBlock>
  17. <TextBox Background="#0000" Foreground="Black" Name="Login"></TextBox>
  18. <TextBlock Text="Пароль" Background="#0000" Margin="0,5,0,0"></TextBlock>
  19. <TextBox Background="#0000" Foreground="Black" Name="Pass"></TextBox>
  20. <Border BorderThickness="2" CornerRadius="7" Background="White" Height="30" Margin="0,5,0,0">
  21. <Button BorderBrush="#0000" Foreground="Black" FontSize="14" Click="FixChange">Изменить</Button>
  22. </Border>
  23. </StackPanel>
  24. <StackPanel Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="3,0,0,0">
  25. <Border BorderThickness="2" CornerRadius="7" BorderBrush="#0000" Background="White" Width="100" Height="30">
  26. <Button Foreground="Black" Content="Назад" FontSize="16" Click="Back"></Button>
  27. </Border>
  28. </StackPanel>
  29. </Grid>
  30. </Page>