Autarizacia.xaml 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. <Page x:Class="Reks.Pages.Authorization"
  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:Reks.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Authorization"
  10. Background="White">
  11. <Grid>
  12. <TextBlock HorizontalAlignment="Center" Margin="0,100,0,0" >Вход</TextBlock>
  13. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Width="500" >
  14. <TextBlock HorizontalAlignment="Center" Text="Логин"/>
  15. <TextBox Background="#0000" Name="EnteredLogin"/>
  16. <TextBlock HorizontalAlignment="Center" Text="Пароль"/>
  17. <TextBox Background="#0000" Name="EnteredPass"/>
  18. <Button Name="AuthUser" Click="GoAuth" Margin="0,10,0,0" Content="Войти (Полный доступ)"/>
  19. <Button Name="AuthGuest" Click="GoGuest" Margin="0,5,0,0" Content="Войти (Только просмотр)"/>
  20. <StackPanel Margin="0,10,0,0" Visibility="Collapsed" Name="Capa">
  21. <Image Source="\Pictures\capcha.png"/>
  22. <TextBlock Text="Введите текст с картинки"/>
  23. <TextBox Name="CapaText"/>
  24. </StackPanel>
  25. </StackPanel>
  26. </Grid>
  27. </Page>