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