3 references to FindStringExact
System.Windows.Forms (2)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
1106
if (DropDownStyle == ComboBoxStyle.DropDownList && !IsHandleCreated && !string.IsNullOrEmpty(value) &&
FindStringExact
(value) == -1)
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
314
public int FindStringExact(string? s) { return ComboBox.
FindStringExact
(s); }
System.Windows.Forms.Tests (1)
System\Windows\Forms\ComboBoxTests.cs (1)
1697
Assert.Equal(expected, control.
FindStringExact
(s));