Authoriz.xaml 1.4 KB

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