|
@@ -0,0 +1,32 @@
|
|
|
+<Page x:Class="Project_Shilkina1.PAGES.Page1"
|
|
|
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
+ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
+ xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
+ xmlns:local="clr-namespace:Project_Shilkina1.PAGES"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ d:DesignHeight="450" d:DesignWidth="800"
|
|
|
+ Title="Page1">
|
|
|
+
|
|
|
+ <Grid Background="#FFE4C3C3">
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="55*"/>
|
|
|
+ <RowDefinition Height="102*"/>
|
|
|
+ <RowDefinition Height="80*"/>
|
|
|
+ <RowDefinition Height="213*"/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="*"/>
|
|
|
+ <ColumnDefinition Width="92*"/>
|
|
|
+ <ColumnDefinition Width="211*"/>
|
|
|
+ <ColumnDefinition Width="*"/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <Label Content="Логин" Margin="0,0,30,10" Grid.Column="1" Grid.Row="1"/>
|
|
|
+ <Label Content="Пароль" Margin="0,33,30,10" Grid.Column="1" Grid.Row="1" Grid.RowSpan="2"/>
|
|
|
+ <TextBox x:Name="TextBoxLogin" Text="" TextWrapping="Wrap" Grid.Column="2" Margin="0,4,10,10" Grid.Row="1"/>
|
|
|
+ <TextBox x:Name="TextBoxPassword" Text="" TextWrapping="Wrap" Grid.Column="2" Margin="0,0,10,8" Grid.Row="2"/>
|
|
|
+ <Button Content="Вход" Grid.Column="2" HorizontalAlignment="Left" Margin="59,10,0,0" Grid.Row="3" VerticalAlignment="Top" Click="Button_Click" Height="20" Width="30"/>
|
|
|
+ <Button Content="Регистрация" Grid.Column="2" HorizontalAlignment="Left" Margin="38,35,0,0" Grid.Row="3" VerticalAlignment="Top" Height="20" Width="72"/>
|
|
|
+
|
|
|
+ </Grid>
|
|
|
+</Page>
|