16 references to ChildItems
Microsoft.VisualStudio.LanguageServices (16)
ValueTracking\TreeItemViewModel.cs (1)
73
ChildItems
.Add(child);
ValueTracking\TreeViewItemBase.cs (8)
43
ChildItems
.CollectionChanged += ChildItems_CollectionChanged;
51
if (IsNodeExpanded &&
ChildItems
.Any())
53
return
ChildItems
.First();
81
if (!IsNodeExpanded ||
ChildItems
.Count == 0)
86
var lastChild =
ChildItems
.Last();
97
var thisIndex = Parent.
ChildItems
.IndexOf(this);
100
if (siblingIndex < 0 || siblingIndex >= Parent.
ChildItems
.Count)
105
return Parent.
ChildItems
[siblingIndex];
ValueTracking\ValueTrackedTreeItemViewModel.cs (7)
82
ChildItems
.Add(EmptyTreeViewItem.Instance);
84
ChildItems
.CollectionChanged += (s, a) =>
86
NotifyPropertyChanged(nameof(
ChildItems
));
139
ChildItems
.Clear();
142
ChildItems
.Add(computingItem);
152
ChildItems
.Clear();
156
ChildItems
.Add(child);