/// <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)
 {
 }
Exemple #2
0
 public TreePathEventArgs()
 {
     _path = new TreePath();
 }
Exemple #3
0
 public abstract bool IsLeaf(TreePath treePath);
Exemple #4
0
 public abstract System.Collections.IEnumerable GetChildren(TreePath treePath);
Exemple #5
0
 public bool IsLeaf(TreePath treePath)
 {
     return(true);
 }
 public override bool IsLeaf(TreePath treePath)
 {
     return(InnerModel.IsLeaf(treePath));
 }