PersonalAccount.axaml 1.4 KB

123456789101112131415161718192021222324252627
  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:vm="using:YtYtAvalonia.ViewModels"
  5. x:DataType="vm:MainWindowViewModel"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. mc:Ignorable="d" d:DesignWidth="1920" d:DesignHeight="1080"
  8. x:Class="YtYtAvalonia.Views.PersonalAccount">
  9. <Grid>
  10. <StackPanel>
  11. <StackPanel Height="70" Background="#B8E0EE" VerticalAlignment="Top" >
  12. <StackPanel HorizontalAlignment="Center">
  13. <TextBlock Margin="0 8 0 0" FontFamily="Roboto" FontSize="35" FontWeight="Medium" >Личный кабинет</TextBlock>
  14. </StackPanel>
  15. </StackPanel>
  16. <StackPanel Margin="0 60" Orientation="Horizontal" HorizontalAlignment="Center">
  17. <Image Source="/Assets/icon.png" Height="80"></Image>
  18. <TextBlock Margin="50 0 150 0" VerticalAlignment="Center" FontFamily="Roboto" FontSize="24">UserLogin</TextBlock>
  19. <Button Height="40" Width="250" CornerRadius="8" Background="#38BFF2">
  20. <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center" FontFamily="Roboto" FontSize="20" Foreground="White">Пройти тестирование</TextBlock>
  21. </Button>
  22. </StackPanel>
  23. </StackPanel>
  24. </Grid>
  25. </UserControl>