Exemplo n.º 1
0
 /// <summary>
 /// Loads the control state from a specified file
 /// </summary>
 /// <returns>true if succedded</returns>
 public void LoadState(string fileName)
 {
     NavigationPaneStateHelper.LoadState(this, fileName);
 }
Exemplo n.º 2
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.º 3
0
 /// <summary>
 /// Loads the control state from a stream
 /// </summary>
 /// <returns>true if succedded</returns>
 public void LoadState(Stream stream)
 {
     NavigationPaneStateHelper.LoadState(this, stream);
 }