예제 #1
0
		/// <summary>
		/// Override this method to control loading operations from tombstone. 
		/// IMPORTANT: if this method is automatically called then AttachData method from the base class is not invoked automatically.
		/// </summary>
		/// <param name="page"></param>
		public override void LoadFromTombstone(PageCommon page)
		{
			Debug.WriteLine("==> ViewModel Operations: Loading page {0} from tombstone...", page.GetType().Name);
		}
예제 #2
0
		/// <summary>
		/// Override this method to control saving operations to tombstone.
		/// </summary>
		/// <param name="page"></param>
		public override void SaveToTombstone(PageCommon page)
		{
			Debug.WriteLine("==> ViewModel Operations: Saving page {0} to tombstone...", page.GetType().Name);
		}