1 instantiation of TextSearch
PresentationFramework (1)
System\Windows\Controls\TextSearch.cs (1)
67instance = new TextSearch(itemsControl);
28 references to TextSearch
PresentationFramework (23)
System\Windows\Controls\ComboBox.cs (2)
604string text = TextSearch.GetPrimaryTextFromItem(this, InternalSelectedItem); 708MatchedTextInfo matchedTextInfo = TextSearch.FindMatchingPrefix(this, newText);
System\Windows\Controls\DataGrid.cs (2)
5458TextSearch instance = TextSearch.EnsureInstance(this);
System\Windows\Controls\ItemsControl.cs (4)
1682TextSearch instance = TextSearch.EnsureInstance(this); 1708TextSearch instance = TextSearch.EnsureInstance(this);
System\Windows\Controls\ListBox.cs (2)
422TextSearch instance = TextSearch.EnsureInstance(this);
System\Windows\Controls\TextSearch.cs (10)
61internal static TextSearch EnsureInstance(ItemsControl itemsControl) 63TextSearch instance = (TextSearch)itemsControl.GetValue(TextSearchInstanceProperty); 81= DependencyProperty.RegisterAttached("TextPath", typeof(string), typeof(TextSearch), 113= DependencyProperty.RegisterAttached("Text", typeof(string), typeof(TextSearch), 149DependencyProperty.RegisterAttached("CurrentPrefix", typeof(string), typeof(TextSearch), 156DependencyProperty.RegisterAttached("IsActive", typeof(bool), typeof(TextSearch), 167DependencyProperty.RegisterAttachedReadOnly("TextSearchInstance", typeof(TextSearch), typeof(TextSearch), 727private static TextSearch GetInstance(DependencyObject d)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
745case 649: t = () => typeof(TextSearch); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10078typeof(System.Windows.Controls.TextSearch),
System\Windows\Markup\KnownTypes.cs (1)
6203case KnownElements.TextSearch: t = typeof(System.Windows.Controls.TextSearch); break;
System.Windows.Controls.Ribbon (5)
Microsoft\Windows\Controls\TextSearchInternal.cs (5)
559string primaryTextPath = (string)itemsControl.GetValue(TextSearch.TextPathProperty); 572primaryTextPath = (string)parentItemsControl.GetValue(TextSearch.TextPathProperty); 581primaryTextPath = (string)grandParentItemsControl.GetValue(TextSearch.TextPathProperty); 602string primaryText = (string)itemDO.GetValue(TextSearch.TextProperty); 785string text = (string)element.GetValue(TextSearch.TextProperty);