1 instantiation of TextSearch
PresentationFramework (1)
src\Framework\System\Windows\Controls\TextSearch.cs (1)
70instance = new TextSearch(itemsControl);
23 references to TextSearch
PresentationFramework (23)
src\Framework\System\Windows\Controls\ComboBox.cs (2)
605string text = TextSearch.GetPrimaryTextFromItem(this, InternalSelectedItem); 710MatchedTextInfo matchedTextInfo = TextSearch.FindMatchingPrefix(this, newText);
src\Framework\System\Windows\Controls\DataGrid.cs (2)
5463TextSearch instance = TextSearch.EnsureInstance(this);
src\Framework\System\Windows\Controls\ItemsControl.cs (4)
1685TextSearch instance = TextSearch.EnsureInstance(this); 1711TextSearch instance = TextSearch.EnsureInstance(this);
src\Framework\System\Windows\Controls\ListBox.cs (2)
420TextSearch instance = TextSearch.EnsureInstance(this);
src\Framework\System\Windows\Controls\TextSearch.cs (10)
64internal static TextSearch EnsureInstance(ItemsControl itemsControl) 66TextSearch instance = (TextSearch)itemsControl.GetValue(TextSearchInstanceProperty); 84= DependencyProperty.RegisterAttached("TextPath", typeof(string), typeof(TextSearch), 122= DependencyProperty.RegisterAttached("Text", typeof(string), typeof(TextSearch), 164DependencyProperty.RegisterAttached("CurrentPrefix", typeof(string), typeof(TextSearch), 171DependencyProperty.RegisterAttached("IsActive", typeof(bool), typeof(TextSearch), 182DependencyProperty.RegisterAttachedReadOnly("TextSearchInstance", typeof(TextSearch), typeof(TextSearch), 741private static TextSearch GetInstance(DependencyObject d)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
741case 649: t = () => typeof(TextSearch); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10074typeof(System.Windows.Controls.TextSearch),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6193case KnownElements.TextSearch: t = typeof(System.Windows.Controls.TextSearch); break;