2 instantiations of BaseTypeTreeNodeViewModel
Microsoft.VisualStudio.LanguageServices (2)
PullMemberUp\MainDialog\BaseTypeTreeNodeViewModel.cs (2)
49
var rootTreeNode = new
BaseTypeTreeNodeViewModel
(root, glyphService) { IsChecked = false, IsExpanded = true };
61
.Select(baseType => new
BaseTypeTreeNodeViewModel
(baseType, glyphService) { IsChecked = false, IsExpanded = true })
14 references to BaseTypeTreeNodeViewModel
Microsoft.VisualStudio.LanguageServices (13)
PullMemberUp\MainDialog\BaseTypeTreeNodeViewModel.cs (6)
27
public ImmutableArray<
BaseTypeTreeNodeViewModel
> BaseTypeNodes { get; private set; }
43
public static
BaseTypeTreeNodeViewModel
CreateBaseTypeTree(
49
var
rootTreeNode = new BaseTypeTreeNodeViewModel(root, glyphService) { IsChecked = false, IsExpanded = true };
50
var queue = new Queue<
BaseTypeTreeNodeViewModel
>();
54
var
currentTreeNode = queue.Dequeue();
64
foreach (
var
node in currentTreeNode.BaseTypeNodes)
PullMemberUp\MainDialog\PullMemberUpDialog.xaml.cs (1)
75
if (DestinationTreeView.SelectedItem is
BaseTypeTreeNodeViewModel
memberGraphNode)
PullMemberUp\MainDialog\PullMemberUpDialogViewModel.cs (4)
37
BaseTypeTreeNodeViewModel
destinationTreeViewModel,
62
public
BaseTypeTreeNodeViewModel
DestinationTreeNodeViewModel { get; }
66
private
BaseTypeTreeNodeViewModel
_selectedDestination;
67
public
BaseTypeTreeNodeViewModel
SelectedDestination
PullMemberUp\VisualStudioPullMemberUpService.cs (2)
58
var
baseTypeRootViewModel =
BaseTypeTreeNodeViewModel
.CreateBaseTypeTree(
Microsoft.VisualStudio.LanguageServices.UnitTests (1)
PullMemberUp\PullMemberUpViewModelTest.vb (1)
257
Dim baseTypeTree =
BaseTypeTreeNodeViewModel
.CreateBaseTypeTree(glyphService:=Nothing, workspaceDoc.Project.Solution, memberSymbol.ContainingType, CancellationToken.None)