file360

Log | Files | Refs

HelpPage.xaml.cs (1202B)


      1 using System;
      2 using System.Collections.Generic;
      3 using System.IO;
      4 using System.Linq;
      5 using System.Runtime.InteropServices.WindowsRuntime;
      6 using Windows.Foundation;
      7 using Windows.Foundation.Collections;
      8 using Windows.UI.Xaml;
      9 using Windows.UI.Xaml.Controls;
     10 using Windows.UI.Xaml.Controls.Primitives;
     11 using Windows.UI.Xaml.Data;
     12 using Windows.UI.Xaml.Input;
     13 using Windows.UI.Xaml.Media;
     14 using Windows.UI.Xaml.Navigation;
     15 
     16 // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkID=390556
     17 
     18 namespace File360
     19 {
     20     /// <summary>
     21     /// An empty page that can be used on its own or navigated to within a Frame.
     22     /// </summary>
     23     public sealed partial class HelpPage : Page
     24     {
     25         public HelpPage()
     26         {
     27             this.InitializeComponent();
     28             Transitions = null;
     29         }
     30 
     31         /// <summary>
     32         /// Invoked when this page is about to be displayed in a Frame.
     33         /// </summary>
     34         /// <param name="e">Event data that describes how this page was reached.
     35         /// This parameter is typically used to configure the page.</param>
     36         protected override void OnNavigatedTo(NavigationEventArgs e)
     37         {
     38         }
     39     }
     40 }