UserPage.axaml 1.1 KB

12345678910111213141516171819
  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="AvaloniaApplication1.UserPage"
  7. xmlns:vm="using:AvaloniaApplication1.ViewModels"
  8. x:DataType="vm:UserViewModel">
  9. <Grid RowDefinitions="50,*,50" ColumnDefinitions="200,*" >
  10. <StackPanel Grid.Column="0" Grid.Row="1">
  11. <Button Content="Профиль" Command="{Binding toProfile}"/>
  12. <Button Content="Смешарики" Command="{Binding toSmesh}"/>
  13. </StackPanel>
  14. <TextBlock Text="Шарарам" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="Yellow" FontSize="30" FontWeight="Black"></TextBlock>
  15. <TextBlock Text="Персонажи" HorizontalAlignment="Center" FontSize="30"> </TextBlock>
  16. <ContentControl Content="{Binding Page}" Grid.Column="1" Grid.Row="1"/>
  17. </Grid>
  18. </UserControl>