123456789101112131415161718192021 |
- <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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d" d:DesignWidth="1000" d:DesignHeight="990"
- x:Class="AvaloniaApplication4.Views.StartPage"
- xmlns:vm="using:AvaloniaApplication4.ViewModels"
- x:DataType="vm:StartPageViewModel"
- Background="White"
- Padding="80">
- <ScrollViewer>
- <StackPanel Orientation="Vertical" HorizontalAlignment="Stretch" VerticalAlignment="Top" Margin="0 20 0 0">
- <StackPanel Orientation="Horizontal" Margin="0 0 0 35">
- <TextBlock Text="С возвращением, " Classes="titleStyle" FontWeight="Bold"/>
- <TextBlock Text="{Binding Name}" Classes="titleStyle" FontWeight="Bold"/>
- </StackPanel>
- <TextBlock Margin="0 0 0 60" Classes ="mediumText" Text="Выберите нужный раздел в левой панели меню и продолжайте работу!"/>
- <Image Source="/Assets/Images/startPage.jpg" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </StackPanel>
- </ScrollViewer>
- </UserControl>
|