123456789101112131415161718192021222324252627 |
- <UserControl xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:vm="using:YtYtAvalonia.ViewModels"
- x:DataType="vm:MainWindowViewModel"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d" d:DesignWidth="1920" d:DesignHeight="1080"
- x:Class="YtYtAvalonia.Views.PersonalAccount">
- <Grid>
- <StackPanel>
- <StackPanel Height="70" Background="#B8E0EE" VerticalAlignment="Top" >
- <StackPanel HorizontalAlignment="Center">
- <TextBlock Margin="0 8 0 0" FontFamily="Roboto" FontSize="35" FontWeight="Medium" >Личный кабинет</TextBlock>
- </StackPanel>
- </StackPanel>
- <StackPanel Margin="0 60" Orientation="Horizontal" HorizontalAlignment="Center">
- <Image Source="/Assets/icon.png" Height="80"></Image>
- <TextBlock Margin="50 0 150 0" VerticalAlignment="Center" FontFamily="Roboto" FontSize="24">UserLogin</TextBlock>
- <Button Height="40" Width="250" CornerRadius="8" Background="#38BFF2">
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center" FontFamily="Roboto" FontSize="20" Foreground="White">Пройти тестирование</TextBlock>
- </Button>
- </StackPanel>
-
-
- </StackPanel>
- </Grid>
- </UserControl>
|