Autorization.xaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334
  1. <Page x:Class="Sessioa.Pages.Autorization"
  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:Sessioa.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Авторизация"
  10. FontFamily="Comic Sans MS"
  11. FontSize="16">
  12. <Grid>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="0.2*"/>
  15. <RowDefinition/>
  16. <RowDefinition Height="0.2*"/>
  17. </Grid.RowDefinitions>
  18. <Grid.ColumnDefinitions>
  19. <ColumnDefinition />
  20. <ColumnDefinition Width="2*"/>
  21. <ColumnDefinition/>
  22. </Grid.ColumnDefinitions>
  23. <Button Name="Mode" Content="Режим просмотра" Margin="40,30,40,-10" Style="{StaticResource ButtonSt}" Grid.Column="1" MaxHeight="60" MinHeight="30" MaxWidth="400" Click="Mode_Click"/>
  24. <Border BorderBrush="#76E383" BorderThickness="5" CornerRadius="30" Grid.Row="1" Grid.Column="1" Margin="20" MaxHeight="400" MaxWidth="550">
  25. <StackPanel Orientation="Vertical" VerticalAlignment="Center">
  26. <TextBlock Text="Авторизация" Style="{StaticResource TextBlockMain}"/>
  27. <TextBox Name="Login" DataContext="Логин" Style="{StaticResource TextBox}" Margin="50,10"/>
  28. <TextBox Name="Password" DataContext="Пароль" Style="{StaticResource TextBox}" Margin="50,10" Cursor="IBeam"/>
  29. <Button Name="Sign" Content="Войти" Style="{StaticResource ButtonAct}" Margin="100,0" MaxHeight="60" MaxWidth="400" Click="Sign_Click"/>
  30. </StackPanel>
  31. </Border>
  32. </Grid>
  33. </Page>