file360

Log | Files | Refs

BlankPage.xaml.cs (1172B)


      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 BlankPage : Page
     24     {
     25         public BlankPage()
     26         {
     27             this.InitializeComponent();
     28         }
     29 
     30         /// <summary>
     31         /// Invoked when this page is about to be displayed in a Frame.
     32         /// </summary>
     33         /// <param name="e">Event data that describes how this page was reached.
     34         /// This parameter is typically used to configure the page.</param>
     35         protected override void OnNavigatedTo(NavigationEventArgs e)
     36         {
     37         }
     38     }
     39 }