Advertisement
garfbradaz

BasicPage1.xaml.cs

Nov 19th, 2012
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.02 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using Windows.Foundation;
  6. using Windows.Foundation.Collections;
  7. using Windows.UI.Xaml;
  8. using Windows.UI.Xaml.Controls;
  9. using Windows.UI.Xaml.Controls.Primitives;
  10. using Windows.UI.Xaml.Data;
  11. using Windows.UI.Xaml.Input;
  12. using Windows.UI.Xaml.Media;
  13. using Windows.UI.Xaml.Navigation;
  14.  
  15. // The Basic Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234237
  16.  
  17. namespace Accountable
  18. {
  19.     /// <summary>
  20.     /// A basic page that provides characteristics common to most applications.
  21.     /// </summary>
  22.     public sealed partial class BasicPage1 : Accountable.Common.LayoutAwarePage
  23.     {
  24.         public BasicPage1()
  25.         {
  26.             this.InitializeComponent();
  27.         }
  28.  
  29.         /// <summary>
  30.         /// Populates the page with content passed during navigation.  Any saved state is also
  31.         /// provided when recreating a page from a prior session.
  32.         /// </summary>
  33.         /// <param name="navigationParameter">The parameter value passed to
  34.         /// <see cref="Frame.Navigate(Type, Object)"/> when this page was initially requested.
  35.         /// </param>
  36.         /// <param name="pageState">A dictionary of state preserved by this page during an earlier
  37.         /// session.  This will be null the first time a page is visited.</param>
  38.         protected override void LoadState(Object navigationParameter, Dictionary<String, Object> pageState)
  39.         {
  40.         }
  41.  
  42.         /// <summary>
  43.         /// Preserves state associated with this page in case the application is suspended or the
  44.         /// page is discarded from the navigation cache.  Values must conform to the serialization
  45.         /// requirements of <see cref="SuspensionManager.SessionState"/>.
  46.         /// </summary>
  47.         /// <param name="pageState">An empty dictionary to be populated with serializable state.</param>
  48.         protected override void SaveState(Dictionary<String, Object> pageState)
  49.         {
  50.         }
  51.     }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement