WindowAuto.xaml 986 B

123456789101112131415161718192021
  1. <Window x:Class="CatProject.WindowAuto"
  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:CatProject"
  7. mc:Ignorable="d"
  8. FontSize="16"
  9. Title="WindowAuto" Height="250" Width="300" MinHeight="250" MinWidth="300">
  10. <Grid>
  11. <StackPanel>
  12. <GroupBox Header="Введите логин">
  13. <TextBox Name ="TBLogin">admin</TextBox>
  14. </GroupBox>
  15. <GroupBox Header="Введите пароль">
  16. <PasswordBox Name="TBPassword" Password="admin"></PasswordBox>
  17. </GroupBox>
  18. <Button HorizontalAlignment="Center" Click="Button_Click">Авторизация</Button>
  19. </StackPanel>
  20. </Grid>
  21. </Window>