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