16 references to Items
System.Windows.Forms (16)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (13)
615this.Items.SortInternal(); 826if ((this.HasItems || this.CreateItemsFromDataSource) && this.Items.Count > 0) 828foreach (object item in this.Items) 878if (this.HasItems && this.DataSource == null && this.Items.Count > 0) 880dataGridViewCell.Items.AddRangeInternal(this.Items.InnerArray.ToArray()); 1209if (!this.Items.Contains(value) && 1225if (this.Items.Count > 0) 1227value = this.Items[0]; 1550if (this.HasItems && this.DataSource == null && this.Items.Count > 0) 1552comboBox.Items.AddRange(this.Items.InnerArray.ToArray()); 1719foreach (object itemCandidate in this.Items) 1747if (item == null && this.Items.Contains(key))
winforms\Managed\System\WinForms\DataGridViewComboBoxColumn.cs (3)
527object[] items = ((DataGridViewComboBoxCell)this.CellTemplate).Items.InnerArray.ToArray(); 534dataGridViewCell.Items.ClearInternal(); 535dataGridViewCell.Items.AddRangeInternal(items);