|
@@ -5,8 +5,33 @@
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:CopyCenter"
|
|
xmlns:local="clr-namespace:CopyCenter"
|
|
mc:Ignorable="d"
|
|
mc:Ignorable="d"
|
|
- Title="Регистрация" Height="450" Width="800">
|
|
|
|
|
|
+ Title="Регистрация" Height="400" Width="400" WindowStartupLocation="CenterScreen" FontFamily="Century Gothic">
|
|
<Grid>
|
|
<Grid>
|
|
-
|
|
|
|
|
|
+ <Grid.RowDefinitions>
|
|
|
|
+ <RowDefinition/>
|
|
|
|
+ <RowDefinition/>
|
|
|
|
+ <RowDefinition/>
|
|
|
|
+ <RowDefinition/>
|
|
|
|
+ <RowDefinition/>
|
|
|
|
+ <RowDefinition/>
|
|
|
|
+ </Grid.RowDefinitions>
|
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
|
+ <ColumnDefinition/>
|
|
|
|
+ <ColumnDefinition/>
|
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
|
+ <TextBlock Text="Логин"/>
|
|
|
|
+ <TextBlock Text="Пароль" Grid.Row="1"/>
|
|
|
|
+ <TextBlock Text="Фамилия" Grid.Row="2"/>
|
|
|
|
+ <TextBlock Text="Имя" Grid.Row="3"/>
|
|
|
|
+ <TextBlock Text="Отчество" Grid.Row="4"/>
|
|
|
|
+ <TextBox Name="login" Grid.Column="1" Grid.Row="2"/>
|
|
|
|
+ <PasswordBox Name="password" Grid.Column="1" Grid.Row="1"/>
|
|
|
|
+ <PasswordBox x:Name="password_Copy" Grid.Column="1"/>
|
|
|
|
+ <TextBox x:Name="login_Copy1" Grid.Column="1" Grid.Row="4"/>
|
|
|
|
+ <TextBox x:Name="login_Copy2" Grid.Column="1" Grid.Row="3"/>
|
|
|
|
+ <Button Grid.Row="5" Grid.Column="0" Content="Зарегистрироваться" Click="" FontFamily="Comic Sans MS"/>
|
|
|
|
+ <Button Grid.Row="5" Grid.Column="1" Content="Отмена" Click="" FontFamily="Comic Sans MS"/>
|
|
|
|
+
|
|
|
|
+
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|
|
</Window>
|