PageRenderTime 54ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/TimeSheetReporting/TimeSheetReporting/Views/About.xaml

#
XAML | 26 lines | 20 code | 6 blank | 0 comment | 0 complexity | 2c78083c25c62ca59c00ef262e59349a MD5 | raw file
  1. <navigation:Page x:Class="TimeSheetReporting.About"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
  6. mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480"
  7. Title="About"
  8. Style="{StaticResource PageStyle}">
  9. <Grid x:Name="LayoutRoot">
  10. <ScrollViewer x:Name="PageScrollViewer" Style="{StaticResource PageScrollViewerStyle}">
  11. <StackPanel x:Name="ContentStackPanel">
  12. <TextBlock x:Name="HeaderText" Style="{StaticResource HeaderTextStyle}"
  13. Text="About"/>
  14. <TextBlock x:Name="ContentText" Style="{StaticResource ContentTextStyle}"
  15. Text="TimeSheet Reporting v1.0"/>
  16. <TextBlock Text="Next Version Feature - Export TimeSheet Report" />
  17. </StackPanel>
  18. </ScrollViewer>
  19. </Grid>
  20. </navigation:Page>