PageAuto.xaml 974 B

12345678910111213141516171819202122232425
  1. <Page x:Class="WpfAppProject.pages.PageAuto"
  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:WpfAppProject.pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="PageAuto">
  10. <Grid>
  11. <StackPanel Width="300">
  12. <GroupBox Header="Логин">
  13. <TextBox Name="TbLogin"/>
  14. </GroupBox>
  15. <GroupBox Header="Пароль">
  16. <TextBox Name="TbPassword"/>
  17. </GroupBox>
  18. <Button Name="BtnEnter" Content="Enter" Click="BtnEnter_Click"/>
  19. <Button Name="BtnRegistration" Content="Reg" Click="BtnRegistration_Click"/>
  20. </StackPanel>
  21. </Grid>
  22. </Page>