123456789101112131415161718192021222324252627282930313233343536373839 |
- <Page x:Class="DontHarmDesktop.Pages.WelcomePage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:DontHarmDesktop.Pages" xmlns:viewmodels="clr-namespace:DontHarmDesktop.ViewModels" d:DataContext="{d:DesignInstance Type=viewmodels:WelcomeViewModel}"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="WelcomePage"
- ShowsNavigationUI="False">
- <StackPanel Style="{StaticResource FormContainer}">
- <TextBlock Text="{Binding GreetingsText}" Style="{StaticResource H2}"/>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Grid.Row="0" Style="{StaticResource H3}">Просмотр</TextBlock>
- <Label Grid.Row="1">
- <Hyperlink NavigateUri="Services.xaml" >Просмотр услуг</Hyperlink>
- </Label>
- <Label Grid.Row="2">
- <Hyperlink NavigateUri="Clients.xaml" >Просмотр клиентов</Hyperlink>
- </Label>
- <TextBlock Grid.Row="3" Style="{StaticResource H3}">Отчеты</TextBlock>
- <Label Grid.Row="4">
- <Hyperlink NavigateUri="Reports/EmployeeCost.xaml">Ценность сотрудников</Hyperlink>
- </Label>
- </Grid>
- </StackPanel>
- </Page>
|