1 instantiation of TypeNode
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TypeBrowser.xaml.cs (1)
595lastNamespace.Types.Add(new TypeNode(type));
20 references to TypeNode
System.Data (20)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TypeBrowser.xaml.cs (20)
298TypeNode entry = ((TreeViewItem)sender).Header as TypeNode; 363TypeNode match = ((SearchActionEventArgs)args).Result as TypeNode; 386TypeNode currentSelection = this.typesTreeView.SelectedItem as TypeNode; 395TypeNode entry = ((System.Windows.Controls.TreeView)sender).SelectedItem as TypeNode; 408private void UpdateSelectedItem(TypeNode entry) 632private ObservableCollection<TypeNode> types; 633public ObservableCollection<TypeNode> Types 649this.types = new ObservableCollection<TypeNode>(); 714this.dispatcherOperation = Dispatcher.CurrentDispatcher.BeginInvoke(DispatcherPriority.Input, new Func<TypeNode>(this.OnRun)); 727private TypeNode OnRun() 730Func<TypeNode, string, bool> matchAlgorithm = SearchAction.MatchShortName; 732TypeNode match = null; 733TypeNode firstCandidate = null; 763foreach (TypeNode entry in ns.Types) 836private static bool MatchFullName(TypeNode type, string searchText) 856private static bool MatchShortName(TypeNode type, string searchText)