AccountChange.xaml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Window x:Class="Детский_сад.AccountChange"
  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:Детский_сад"
  7. mc:Ignorable="d"
  8. Title="AccountChange" Height="450" Width="800">
  9. <Grid Background="PapayaWhip">
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="65"/>
  12. <RowDefinition Height="5*"/>
  13. <RowDefinition Height="65"/>
  14. </Grid.RowDefinitions>
  15. <TextBlock Text="Изменение данных учётной записи" Style="{StaticResource Header}"/>
  16. <StackPanel Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center">
  17. <StackPanel Style="{StaticResource spAvtorReg}">
  18. <TextBlock Text="Логин" Style="{StaticResource tbAvtorReg}"/>
  19. <TextBox Name="tboxLogin" Style="{StaticResource tboxReg}"/>
  20. </StackPanel>
  21. <StackPanel Style="{StaticResource spAvtorReg}">
  22. <TextBlock Text="Пароль" Style="{StaticResource tbAvtorReg}"/>
  23. <TextBox Name="tboxPassword" Style="{StaticResource tboxReg}"/>
  24. </StackPanel>
  25. <StackPanel Style="{StaticResource spAvtorReg}">
  26. <TextBlock Text="Повторите пароль" Style="{StaticResource tbAvtorReg}"/>
  27. <TextBox Name="tboxRepeatPassword" Style="{StaticResource tboxReg}"/>
  28. </StackPanel>
  29. </StackPanel>
  30. <Button Name="btnSave" Content="Сохранить" Grid.Row="2" Grid.ColumnSpan="3" Template="{StaticResource btnTemplate}" HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="10" Click="btnSave_Click"/>
  31. </Grid>
  32. </Window>