Exemplo n.º 1
0
 void OnAppExit(object sender, ExitEventArgs e)
 {
     if (AutoStateManagement)
     {
         NavigationPaneStateHelper.OnAppExit(this);
     }
 }
Exemplo n.º 2
0
 public void ResetSavedState()
 {
     NavigationPaneStateHelper.ResetState(this);
 }
Exemplo n.º 3
0
 public void ResetSavedState(string fileName)
 {
     NavigationPaneStateHelper.ResetState(this, fileName);
 }
Exemplo n.º 4
0
 public void ResetSavedState(Stream stream)
 {
     NavigationPaneStateHelper.ResetState(this, stream);
 }
Exemplo n.º 5
0
 /// <summary>
 /// Saves the control state from a specified file
 /// </summary>
 /// <returns>true if succedded</returns>
 public void SaveState()
 {
     NavigationPaneStateHelper.SaveState(this);
 }
Exemplo n.º 6
0
 /// <summary>
 /// Saves the control state from a specified file
 /// </summary>
 /// <returns>true if succedded</returns>
 public void SaveState(string fileName)
 {
     NavigationPaneStateHelper.SaveState(this, fileName);
 }
Exemplo n.º 7
0
 /// <summary>
 /// Saves the control state from a specified file
 /// </summary>
 /// <returns>true if succedded</returns>
 public void SaveState(Stream stream)
 {
     NavigationPaneStateHelper.SaveState(this, stream);
 }
Exemplo n.º 8
0
 /// <summary>
 /// Loads the control state from an IsolatedStorage ( default when AutoStateManagement = true )
 /// </summary>
 /// <returns>true if succedded</returns>
 public void LoadState()
 {
     NavigationPaneStateHelper.LoadState(this);
 }
Exemplo n.º 9
0
 /// <summary>
 /// Loads the control state from a stream
 /// </summary>
 /// <returns>true if succedded</returns>
 public void LoadState(Stream stream)
 {
     NavigationPaneStateHelper.LoadState(this, stream);
 }