1 instantiation of TextSearch
PresentationFramework (1)
System\Windows\Controls\TextSearch.cs (1)
55instance = new TextSearch(itemsControl);
28 references to TextSearch
PresentationFramework (23)
System\Windows\Controls\ComboBox.cs (2)
586string text = TextSearch.GetPrimaryTextFromItem(this, InternalSelectedItem); 689MatchedTextInfo matchedTextInfo = TextSearch.FindMatchingPrefix(this, newText);
System\Windows\Controls\DataGrid.cs (2)
5416TextSearch instance = TextSearch.EnsureInstance(this);
System\Windows\Controls\ItemsControl.cs (4)
1648TextSearch instance = TextSearch.EnsureInstance(this); 1674TextSearch instance = TextSearch.EnsureInstance(this);
System\Windows\Controls\ListBox.cs (2)
414TextSearch instance = TextSearch.EnsureInstance(this);
System\Windows\Controls\TextSearch.cs (10)
49internal static TextSearch EnsureInstance(ItemsControl itemsControl) 51TextSearch instance = (TextSearch)itemsControl.GetValue(TextSearchInstanceProperty); 69= DependencyProperty.RegisterAttached("TextPath", typeof(string), typeof(TextSearch), 101= DependencyProperty.RegisterAttached("Text", typeof(string), typeof(TextSearch), 137DependencyProperty.RegisterAttached("CurrentPrefix", typeof(string), typeof(TextSearch), 144DependencyProperty.RegisterAttached("IsActive", typeof(bool), typeof(TextSearch), 155DependencyProperty.RegisterAttachedReadOnly("TextSearchInstance", typeof(TextSearch), typeof(TextSearch), 711private static TextSearch GetInstance(DependencyObject d)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
742case 649: t = () => typeof(TextSearch); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
11179typeof(System.Windows.Controls.TextSearch),
System\Windows\Markup\KnownTypes.cs (1)
6196case KnownElements.TextSearch: t = typeof(System.Windows.Controls.TextSearch); break;
System.Windows.Controls.Ribbon (5)
Microsoft\Windows\Controls\TextSearchInternal.cs (5)
553string primaryTextPath = (string)itemsControl.GetValue(TextSearch.TextPathProperty); 566primaryTextPath = (string)parentItemsControl.GetValue(TextSearch.TextPathProperty); 575primaryTextPath = (string)grandParentItemsControl.GetValue(TextSearch.TextPathProperty); 596string primaryText = (string)itemDO.GetValue(TextSearch.TextProperty); 778string text = (string)element.GetValue(TextSearch.TextProperty);