5 references to FindString
System.Windows.Forms (4)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (3)
2055SelectedIndex = FindString(MatchingText); 2076if (FindString(newMatchingText) != -1) 2088int itemFound = FindString(newMatchingText);
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
312public int FindString(string? s) { return ComboBox.FindString(s); }
System.Windows.Forms.Tests (1)
System\Windows\Forms\ComboBoxTests.cs (1)
1576Assert.Equal(expected, control.FindString(s));