|
@@ -14,21 +14,24 @@
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
</Grid.ColumnDefinitions>
|
|
|
<Grid.RowDefinitions>
|
|
|
- <RowDefinition Height="*"/>
|
|
|
- <RowDefinition Height="*"/>
|
|
|
- <RowDefinition Height="*"/>
|
|
|
- <RowDefinition Height="*"/>
|
|
|
- <RowDefinition Height="*"/>
|
|
|
+ <RowDefinition Height="32"/>
|
|
|
+ <RowDefinition Height="32"/>
|
|
|
+ <RowDefinition Height="32"/>
|
|
|
+ <RowDefinition Height="32"/>
|
|
|
+ <RowDefinition Height="32"/>
|
|
|
+ <RowDefinition Height="64"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
- <TextBlock Text="Фамилия" HorizontalAlignment="Center" Margin="0,30,0,40"/>
|
|
|
- <TextBlock Text="Имя" Grid.Row="1" HorizontalAlignment="Center" Margin="0,30,0,40"/>
|
|
|
- <TextBlock Text="Отчество" Grid.Row="2" HorizontalAlignment="Center" Margin="0,30,0,40"/>
|
|
|
- <TextBlock Text="Логин" Grid.Row="3" HorizontalAlignment="Center" Margin="0,30,0,40"/>
|
|
|
- <TextBox MaxLength="100" Grid.Column="1" Margin="0,20,0,40"/>
|
|
|
- <TextBox MaxLength="50" Grid.Column="1" Grid.Row="1" Margin="0,20,0,40"/>
|
|
|
- <TextBox MaxLength="100" Grid.Column="1" Grid.Row="2" Margin="0,20,0,40"/>
|
|
|
- <TextBox MaxLength="15" Grid.Column="1" Grid.Row="3" Margin="0,20,350,40"/>
|
|
|
+ <TextBlock Text="Пароль" HorizontalAlignment="Center" Margin="4"/>
|
|
|
+ <TextBlock Text="Фамилия" Grid.Row="1" HorizontalAlignment="Center" Margin="4"/>
|
|
|
+ <TextBlock Text="Имя" Grid.Row="2" HorizontalAlignment="Center" Margin="4"/>
|
|
|
+ <TextBlock Text="Отчество" Grid.Row="3" HorizontalAlignment="Center" Margin="4"/>
|
|
|
+ <TextBlock Text="Логин" Grid.Row="4" HorizontalAlignment="Center" Margin="4"/>
|
|
|
+ <TextBox Text="{Binding Password}" MaxLength="50" Grid.Column="1" Margin="4,4,70,4"/>
|
|
|
+ <TextBox Text="{Binding FirstName}" MaxLength="100" Grid.Column="1" Grid.Row="1" Margin="4,4,70,4"/>
|
|
|
+ <TextBox Text="{Binding MiddleName}" MaxLength="50" Grid.Column="1" Grid.Row="2" Margin="4,4,70,4"/>
|
|
|
+ <TextBox Text="{Binding LastName}" MaxLength="100" Grid.Column="1" Grid.Row="3" Margin="4,4,70,4"/>
|
|
|
+ <TextBox Text="{Binding Login}" MaxLength="15" Grid.Column="1" Grid.Row="4" Margin="4,4,500,4"/>
|
|
|
|
|
|
- <Button Content="Сохранить" Grid.ColumnSpan="2" Grid.Row="4" Name="BtnSave" Click="BtnSave_Click"></Button>
|
|
|
+ <Button Content="Сохранить" Grid.ColumnSpan="2" Grid.Row="5" Name="BtnSave" Click="BtnSave_Click"></Button>
|
|
|
</Grid>
|
|
|
</Page>
|