public RootAsynchronousTreeNode(
     string promptName
     , string parameterName
     , ValidValue validValue
     , IChildTreeNodeService childTreeNodeService)
     : base(promptName
         , parameterName
         , validValue
         , childTreeNodeService
         , null)
 {
 }
 public RootAsynchronousTreeNode(
     string promptName
     , string parameterName
     , ValidValue validValue
     , IChildTreeNodeService childTreeNodeService)
     : base(
         promptName
         , parameterName
         , validValue
         , childTreeNodeService
         , null)
 {
 }
示例#3
0
 public AsynchronousTreeNode(
     string promptName
     , string parameterName
     , ValidValue validValue
     , IChildTreeNodeService childTreeNodeService
     , ITreeNode parent)
     : base(promptName
         , parameterName
         , validValue
         , new ObservableCollection<ITreeNode>(new[] { new LoadingTreeNode() })
         , parent
         , true
         , false)
 {
     _childTreeNodeService = childTreeNodeService;
     _childrenHaveBeenSet = false;
     _childTreeNodeService.ErrorGettingChildTreeNodes += OnErrorGettingChildTreeNodes;
 }
 public AsynchronousTreeNode(
     string promptName
     , string parameterName
     , ValidValue validValue
     , IChildTreeNodeService childTreeNodeService
     , ITreeNode parent)
     : base(
         promptName
         , parameterName
         , validValue
         , new ObservableCollection <ITreeNode>(new[] { new LoadingTreeNode() })
         , parent
         , true
         , false)
 {
     _childTreeNodeService = childTreeNodeService;
     _childrenHaveBeenSet  = false;
     _childTreeNodeService.ErrorGettingChildTreeNodes += OnErrorGettingChildTreeNodes;
 }
 public RootTreeNodeProvider(IChildTreeNodeService childTreeNodeService)
 {
     _childTreeNodeService = childTreeNodeService;
 }