Exemplo n.º 1
0
 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)
 {
 }
Exemplo n.º 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;
 }
Exemplo n.º 4
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;
 }
Exemplo n.º 5
0
 public RootTreeNodeProvider(IChildTreeNodeService childTreeNodeService)
 {
     _childTreeNodeService = childTreeNodeService;
 }