コード例 #1
0
ファイル: PropertyGrid.cs プロジェクト: 15070217668/winforms
 public void CopyTo(ExpandState other)
 {
     other.expandedNodes.Clear();
     foreach (var n in this.expandedNodes)
     {
         other.expandedNodes.Add(n);
     }
 }
コード例 #2
0
 public void CopyTo(ExpandState other)
 {
     other.expandedNodes.Clear();
     foreach (var n in this.expandedNodes) other.expandedNodes.Add(n);
 }
コード例 #3
0
 public ExpandState(ExpandState cc)
 {
     this.expandedNodes = new HashSet<string>(cc.expandedNodes);
 }
コード例 #4
0
ファイル: PropertyGrid.cs プロジェクト: 15070217668/winforms
 public ExpandState(ExpandState cc)
 {
     this.expandedNodes = new HashSet <string>(cc.expandedNodes);
 }