StartPage.axaml 1.2 KB

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="1000" d:DesignHeight="990"
  6. x:Class="AvaloniaApplication4.Views.StartPage"
  7. xmlns:vm="using:AvaloniaApplication4.ViewModels"
  8. x:DataType="vm:StartPageViewModel"
  9. Background="White"
  10. Padding="80">
  11. <ScrollViewer>
  12. <StackPanel Orientation="Vertical" HorizontalAlignment="Stretch" VerticalAlignment="Top" Margin="0 20 0 0">
  13. <StackPanel Orientation="Horizontal" Margin="0 0 0 35">
  14. <TextBlock Text="С возвращением, " Classes="titleStyle" FontWeight="Bold"/>
  15. <TextBlock Text="{Binding Name}" Classes="titleStyle" FontWeight="Bold"/>
  16. </StackPanel>
  17. <TextBlock Margin="0 0 0 60" Classes ="mediumText" Text="Выберите нужный раздел в левой панели меню и продолжайте работу!"/>
  18. <Image Source="/Assets/Images/startPage.jpg" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  19. </StackPanel>
  20. </ScrollViewer>
  21. </UserControl>