MainWindow.xaml 1.2 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="Captcha.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Captcha"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="500" Width="800">
  9. <Grid>
  10. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center" Height="304" Margin="328,86,275.6,80.4" Width="190">
  11. <GroupBox Header="Логин">
  12. <TextBox x:Name="Login" />
  13. </GroupBox>
  14. <GroupBox Header="Пароль">
  15. <PasswordBox x:Name="Password" />
  16. </GroupBox>
  17. <Button x:Name="loginBtn" Content="Войти"/>
  18. <StackPanel>
  19. <Image Height="104" Margin="0,0,-0.6,0" x:Name="grf" Width="190"/>
  20. <Button x:Name="reload" Content="Другая капча"></Button>
  21. </StackPanel>
  22. </StackPanel>
  23. </Grid>
  24. </Window>