AutoPage.axaml 951 B

12345678910111213141516171819
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:vm="using:AvaloniaApplicationPersonalPage.ViewModels"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
  7. x:DataType="vm:MainWindowViewModel"
  8. x:Class="AvaloniaApplicationPersonalPage.Views.AutoPage">
  9. <Grid>
  10. <StackPanel>
  11. <TextBlock>Введите логин</TextBlock>
  12. <TextBox Text="{Binding AutoPage.Login}"></TextBox>
  13. <TextBlock>Введите пароль</TextBlock>
  14. <TextBox PasswordChar="*" Text="{Binding AutoPage.Password}"></TextBox>
  15. <TextBlock Text="{Binding AutoPage.Message}"></TextBlock>
  16. <Button Command="{Binding Auto}">Авторизация</Button>
  17. </StackPanel>
  18. </Grid>
  19. </UserControl>