2 instantiations of MatchedTextInfo
PresentationFramework (2)
MS\Internal\MatchedTextInfo.cs (1)
19s_NoMatch = new MatchedTextInfo(-1, null, 0, 0);
System\Windows\Controls\TextSearch.cs (1)
518matchedTextInfo = new MatchedTextInfo(matchedItemIndex, matchedText, matchedPrefixLength, textExcludingPrefixLength);
9 references to MatchedTextInfo
PresentationFramework (9)
MS\Internal\MatchedTextInfo.cs (2)
34internal static MatchedTextInfo NoMatch 94private static MatchedTextInfo s_NoMatch;
System\Windows\Controls\ComboBox.cs (4)
690MatchedTextInfo matchedTextInfo = TextSearch.FindMatchingPrefix(this, newText); 781MatchedTextInfo matchedTextInfo = (MatchedTextInfo)args[1]; 796void UpdateTextBox(string matchedText, MatchedTextInfo matchedTextInfo)
System\Windows\Controls\TextSearch.cs (3)
497internal static MatchedTextInfo FindMatchingPrefix(ItemsControl itemsControl, string prefix) 499MatchedTextInfo matchedTextInfo; 522matchedTextInfo = MatchedTextInfo.NoMatch;