Ejemplo n.º 1
0
 public abstract bool IsLeaf(TreePath treePath);
Ejemplo n.º 2
0
 public abstract System.Collections.IEnumerable GetChildren(TreePath treePath);
Ejemplo n.º 3
0
 public TreePathEventArgs()
 {
     _path = new TreePath();
 }
Ejemplo n.º 4
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="parent">Path to a parent node</param>
 /// <param name="children">Child nodes</param>
 public TreeModelEventArgs(TreePath parent, object[] children)
     : this(parent, null, children)
 {
 }
Ejemplo n.º 5
0
 public TreeNodeAdv FindNode(TreePath path)
 {
     return(FindNode(path, false));
 }
Ejemplo n.º 6
0
 public bool IsLeaf(TreePath treePath)
 {
     return(true);
 }