コード例 #1
0
ファイル: TreeView.cs プロジェクト: joncham/xwt
 /// <summary>
 /// Restores the status of the tree
 /// </summary>
 /// <param name='status'>
 /// Status object
 /// </param>
 /// <remarks>
 /// The status information includes node expansion and selection status. The provided object
 /// must have been generated with a SaveStatus call on this same tree.
 /// </remarks>
 public void RestoreStatus(TreeViewStatus status)
 {
     status.Load(this);
 }
コード例 #2
0
ファイル: TreeView.cs プロジェクト: chkn/xwt
 /// <summary>
 /// Restores the status of the tree
 /// </summary>
 /// <param name='status'>
 /// Status object
 /// </param>
 /// <remarks>
 /// The status information includes node expansion and selection status. The provided object
 /// must have been generated with a SaveStatus call on this same tree.
 /// </remarks>
 public void RestoreStatus(TreeViewStatus status)
 {
     status.Load (this);
 }