예제 #1
0
 public void each(doToNodeWithParent oper)
 {
     foreach (TreeViewNode st in this.children)
     {
         st.each(oper, this);
     }
 }
예제 #2
0
 public void each (doToNodeWithParent oper)
 {
     foreach (TreeViewNode st in this.children)
     {
         st.each(oper, this);
     }
 }
예제 #3
0
 public void each(doToNodeWithParent oper, TreeViewNode parentNode)
 {
     foreach (TreeViewNode st in this.children)
     {
         st.each(oper, this);
     }
     oper(this, parentNode);
 }
예제 #4
0
 public void each (doToNodeWithParent oper, TreeViewNode parentNode)
 {
     foreach (TreeViewNode st in this.children)
     {
         st.each(oper, this);
     }
     oper(this, parentNode);
 }