UserControl1.axaml 940 B

123456789101112131415161718192021
  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. x:Class="AvaloniaApplication2.Views.UserControl1">
  7. <StackPanel HorizontalAlignment="Center">
  8. <TextBlock Text="Логин" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="60,100,60,4">
  9. </TextBlock>
  10. <TextBox> </TextBox>
  11. <TextBlock Text="Пароль" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="60,10,60,4">
  12. </TextBlock>
  13. <TextBox> </TextBox>
  14. <TextBlock>
  15. <Button HorizontalAlignment="Center" VerticalAlignment="Center" Margin="60,10,60,4" >
  16. Авторизация
  17. </Button>
  18. </TextBlock>
  19. </StackPanel>
  20. </UserControl>