Example #1
0
 public BaseNodeViewModel(ControlHierarchicalViewModel parent, string text, object tag, bool lazyLoadChildren = true)
     : base(parent, text, tag, lazyLoadChildren)
 {
 }
Example #2
0
 public BaseNodeViewModel(string nodeID, string text, object tag, ControlHierarchicalViewModel parent = null, bool lazyLoad = true)
     : base(parent, text, tag, lazyLoad)
 {
     NodeId = nodeID;
 }
 public BaseNodeViewModel(ControlHierarchicalViewModel parent, string nodeID, string text, bool lazyLoadChildren = true)
     : base(parent, text, parent, lazyLoadChildren)
 {
     NodeId = nodeID;
 }