30 references to Add
PresentationUI (1)
MS\Internal\Documents\SignatureSummaryDialog.cs (1)
319_listBoxSummary.Items.Add(signatureResources);
System.Windows.Forms (5)
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.ObjectCollection.cs (1)
37int index = Add(item);
System\Windows\Forms\Controls\ListBoxes\ListBox.ObjectCollection.cs (2)
161int IList.Add(object? item) => Add(item!); 335Add(item);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
3744DropDownListBox.Items.Add(value);
System\Windows\Forms\MDI\MDIWindowDialog.cs (1)
49int n = _itemList.Items.Add(new ListItem(all[i]));
System.Windows.Forms.Design (24)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (2)
155_listBox.Items.Add(created); 771_listBox.Items.Add(new ListItem(_editor, items[i]));
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (1)
67listBox.Items.Add(newItem);
System\Drawing\Design\ColorEditor.ColorUI.cs (2)
211_lbCommon.Items.Add(color); 217_lbSystem.Items.Add(color);
System\Drawing\Design\CursorEditor.CursorUI.cs (1)
39Items.Add(obj);
System\Windows\Forms\Design\DataGridViewAddColumnDialog.cs (1)
738_dataColumns.Items.Add(new ListBoxItem(propertyDescriptor.PropertyType, propertyDescriptor.Name));
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
875_selectedColumns.Items.Add(new ListBoxItem(_columnsPrivateCopy[i], this, columnDesigner));
System\Windows\Forms\Design\DataGridViewColumnTypeEditor.Picker.cs (1)
108_typesListBox.Items.Add(new ListBoxItem(t));
System\Windows\Forms\Design\FormatControl.cs (15)
329dateTimeFormatsListBox.Items.Add(new DateTimeFormatsListBoxItem(s_dateTimeFormatValue, "d")); 330dateTimeFormatsListBox.Items.Add(new DateTimeFormatsListBoxItem(s_dateTimeFormatValue, "D")); 331dateTimeFormatsListBox.Items.Add(new DateTimeFormatsListBoxItem(s_dateTimeFormatValue, "f")); 332dateTimeFormatsListBox.Items.Add(new DateTimeFormatsListBoxItem(s_dateTimeFormatValue, "F")); 333dateTimeFormatsListBox.Items.Add(new DateTimeFormatsListBoxItem(s_dateTimeFormatValue, "g")); 334dateTimeFormatsListBox.Items.Add(new DateTimeFormatsListBoxItem(s_dateTimeFormatValue, "G")); 335dateTimeFormatsListBox.Items.Add(new DateTimeFormatsListBoxItem(s_dateTimeFormatValue, "t")); 336dateTimeFormatsListBox.Items.Add(new DateTimeFormatsListBoxItem(s_dateTimeFormatValue, "T")); 337dateTimeFormatsListBox.Items.Add(new DateTimeFormatsListBoxItem(s_dateTimeFormatValue, "M")); 390formatTypeListBox.Items.Add(new NoFormattingFormatType()); 391formatTypeListBox.Items.Add(new NumericFormatType(this)); 392formatTypeListBox.Items.Add(new CurrencyFormatType(this)); 393formatTypeListBox.Items.Add(new DateTimeFormatType(this)); 394formatTypeListBox.Items.Add(new ScientificFormatType(this)); 395formatTypeListBox.Items.Add(new CustomFormatType(this));