2 instantiations of MatchedTextInfo
PresentationFramework (2)
MS\Internal\MatchedTextInfo.cs (1)
18s_NoMatch = new MatchedTextInfo(-1, null, 0, 0);
System\Windows\Controls\TextSearch.cs (1)
517matchedTextInfo = new MatchedTextInfo(matchedItemIndex, matchedText, matchedPrefixLength, textExcludingPrefixLength);
9 references to MatchedTextInfo
PresentationFramework (9)
MS\Internal\MatchedTextInfo.cs (2)
33internal static MatchedTextInfo NoMatch 93private static MatchedTextInfo s_NoMatch;
System\Windows\Controls\ComboBox.cs (4)
689MatchedTextInfo matchedTextInfo = TextSearch.FindMatchingPrefix(this, newText); 780MatchedTextInfo matchedTextInfo = (MatchedTextInfo)args[1]; 795private void UpdateTextBox(string matchedText, MatchedTextInfo matchedTextInfo)
System\Windows\Controls\TextSearch.cs (3)
496internal static MatchedTextInfo FindMatchingPrefix(ItemsControl itemsControl, string prefix) 498MatchedTextInfo matchedTextInfo; 521matchedTextInfo = MatchedTextInfo.NoMatch;