PageRenderTime 46ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/TimeSheetReporting/TimeSheetReporting/Views/About.xaml.cs

#
C# | 28 lines | 25 code | 2 blank | 1 comment | 0 complexity | c750850ebecd14e348f01e04ef7be9ea MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Net;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Documents;
  8. using System.Windows.Input;
  9. using System.Windows.Media;
  10. using System.Windows.Media.Animation;
  11. using System.Windows.Navigation;
  12. using System.Windows.Shapes;
  13. namespace TimeSheetReporting
  14. {
  15. public partial class About : Page
  16. {
  17. public About()
  18. {
  19. InitializeComponent();
  20. }
  21. // Executes when the user navigates to this page.
  22. protected override void OnNavigatedTo(NavigationEventArgs e)
  23. {
  24. }
  25. }
  26. }