2 instantiations of MatchedTextInfo
PresentationFramework (2)
MS\Internal\MatchedTextInfo.cs (1)
22s_NoMatch = new MatchedTextInfo(-1, null, 0, 0);
System\Windows\Controls\TextSearch.cs (1)
530matchedTextInfo = new MatchedTextInfo(matchedItemIndex, matchedText, matchedPrefixLength, textExcludingPrefixLength);
9 references to MatchedTextInfo
PresentationFramework (9)
MS\Internal\MatchedTextInfo.cs (2)
37internal static MatchedTextInfo NoMatch 97private static MatchedTextInfo s_NoMatch;
System\Windows\Controls\ComboBox.cs (4)
708MatchedTextInfo matchedTextInfo = TextSearch.FindMatchingPrefix(this, newText); 799MatchedTextInfo matchedTextInfo = (MatchedTextInfo)args[1]; 814void UpdateTextBox(string matchedText, MatchedTextInfo matchedTextInfo)
System\Windows\Controls\TextSearch.cs (3)
509internal static MatchedTextInfo FindMatchingPrefix(ItemsControl itemsControl, string prefix) 511MatchedTextInfo matchedTextInfo; 534matchedTextInfo = MatchedTextInfo.NoMatch;