示例#1
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);
 }
示例#2
0
 /// <summary>
 /// Saves the control state from a specified file
 /// </summary>
 /// <returns>true if succedded</returns>
 public void SaveState()
 {
     NavigationPaneStateHelper.SaveState(this);
 }
示例#3
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);
 }