protected TfsQueryTreeItemViewModel(TfsQueryTreeItemViewModel parent, string name)
        {
            this.parent = parent;
            this.name   = name;

            this.children = new ObservableCollection <TfsQueryTreeItemViewModel>();
        }
Example #2
0
 public TfsPersonalFolderQueryItem(TfsQueryTreeItemViewModel parent, string name) : base(parent, name)
 {
 }
Example #3
0
 public TfsTreeQueryItem(TfsQueryTreeItemViewModel parent, string name) : base(parent, name)
 {
 }
Example #4
0
 public TfsLinkedListQueryItem(TfsQueryTreeItemViewModel parent, string name, ICommand command, Guid guid) : base(parent, name)
 {
     this.RenderDependenciesImageFromQuery = command;
     this.QueryId = guid;
 }