StartPage.xaml 1.0 KB

123456789101112131415161718
  1. <Page x:Class="PPRazumovskiy.Pages.StartPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PPRazumovskiy.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="StartPage">
  10. <Grid>
  11. <StackPanel Orientation="Vertical" Margin="42" HorizontalAlignment="Stretch">
  12. <TextBlock Text="Добро пожаловать!" FontSize="20" FontWeight="Bold" TextWrapping="Wrap" Margin="0 0 0 15"/>
  13. <TextBlock Text="Для начала работы выберите действие в панели меню слева :)" TextWrapping="Wrap" FontSize="16" Margin="0 0 0 25"/>
  14. <Image MaxHeight="630" Source="/Images/startPageImage.jpg" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  15. </StackPanel>
  16. </Grid>
  17. </Page>