1 instantiation of TextSearch
PresentationFramework (1)
System\Windows\Controls\TextSearch.cs (1)
56instance = new TextSearch(itemsControl);
28 references to TextSearch
PresentationFramework (23)
System\Windows\Controls\ComboBox.cs (2)
594string text = TextSearch.GetPrimaryTextFromItem(this, InternalSelectedItem); 698MatchedTextInfo matchedTextInfo = TextSearch.FindMatchingPrefix(this, newText);
System\Windows\Controls\DataGrid.cs (2)
5455TextSearch instance = TextSearch.EnsureInstance(this);
System\Windows\Controls\ItemsControl.cs (4)
1673TextSearch instance = TextSearch.EnsureInstance(this); 1699TextSearch instance = TextSearch.EnsureInstance(this);
System\Windows\Controls\ListBox.cs (2)
416TextSearch instance = TextSearch.EnsureInstance(this);
System\Windows\Controls\TextSearch.cs (10)
50internal static TextSearch EnsureInstance(ItemsControl itemsControl) 52TextSearch instance = (TextSearch)itemsControl.GetValue(TextSearchInstanceProperty); 70= DependencyProperty.RegisterAttached("TextPath", typeof(string), typeof(TextSearch), 102= DependencyProperty.RegisterAttached("Text", typeof(string), typeof(TextSearch), 138DependencyProperty.RegisterAttached("CurrentPrefix", typeof(string), typeof(TextSearch), 145DependencyProperty.RegisterAttached("IsActive", typeof(bool), typeof(TextSearch), 156DependencyProperty.RegisterAttachedReadOnly("TextSearchInstance", typeof(TextSearch), typeof(TextSearch), 715private static TextSearch GetInstance(DependencyObject d)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
743case 649: t = () => typeof(TextSearch); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10076typeof(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)
554string primaryTextPath = (string)itemsControl.GetValue(TextSearch.TextPathProperty); 567primaryTextPath = (string)parentItemsControl.GetValue(TextSearch.TextPathProperty); 576primaryTextPath = (string)grandParentItemsControl.GetValue(TextSearch.TextPathProperty); 597string primaryText = (string)itemDO.GetValue(TextSearch.TextProperty); 780string text = (string)element.GetValue(TextSearch.TextProperty);