RegPage.axaml 951 B

1234567891011121314151617181920
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
  6. xmlns:vm="using:AvaloniaApplication4.ViewModels"
  7. x:DataType="vm:RegPageVM"
  8. x:Class="AvaloniaApplication4.RegPage">
  9. <Grid>
  10. <StackPanel>
  11. <TextBlock>Введите имя</TextBlock>
  12. <TextBox Text="{Binding User.FullName}"></TextBox>
  13. <TextBlock>Введите логин</TextBlock>
  14. <TextBox Text="{Binding User.Username}"></TextBox>
  15. <TextBlock>Введите пароль</TextBlock>
  16. <TextBox PasswordChar="*" Text="{Binding Password}"></TextBox>
  17. <Button Command="{Binding AddUser}">Зарегистировать</Button>
  18. </StackPanel>
  19. </Grid>
  20. </UserControl>