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