Implemented interface member:
14 references to Insert
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ShortcutKeysEditor.ShortcutKeysUI.cs (1)
342_keyComboBox.Items.Insert(0, SR.ShortcutKeys_InvalidKey);
System.Windows.Forms.Tests (13)
System\Windows\Forms\AccessibleObjects\ComboBox.ComboBoxAccessibleObjectTests.cs (1)
469comboBox.Items.Insert(0, "h");
System\Windows\Forms\Combobox.ObjectCollectionTests.cs (11)
632comboBoxObjectCollection.Insert(0, "c"); 661comboBoxObjectCollection.Insert(0, person3); 687comboBoxObjectCollection.Insert(0, "c"); 718comboBoxObjectCollection.Insert(0, person3); 748comboBoxObjectCollection.Insert(0, person2); 749comboBoxObjectCollection.Insert(0, "Name 4"); 771Assert.Throws<ArgumentNullException>("item", () => comboBoxObjectCollection.Insert(0, null)); 788Assert.Throws<ArgumentOutOfRangeException>("index", () => comboBoxObjectCollection.Insert(-1, 1)); 805Assert.Throws<ArgumentOutOfRangeException>("index", () => comboBoxObjectCollection.Insert(3, 1)); 826Assert.Throws<ArgumentException>(() => comboBoxObjectCollection.Insert(3, 1)); 1467comboBox.Items.Insert(1, "Item3");
System\Windows\Forms\ComboBoxTests.cs (1)
2436comboBox.Items.Insert(index, item);