10 references to Items
System.Windows.Forms (10)
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (10)
16[DefaultProperty(nameof(Items))] 101ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(value, Items.Count); 123return (index == -1) ? null : Items[index]; 135for (int i = 0; i < Items.Count; i++) 137if (value.Equals(Items[i])) 295? Items[index]!.ToString()!.Equals(text) 296: Items[index]!.ToString()!.ToUpper(CultureInfo.InvariantCulture) 445if (Items is not null) 447s = $"{s}, Items.Count: {Items.Count}, SelectedIndex: {SelectedIndex}"; 512int width = LayoutUtils.OldGetLargestStringSizeInCollection(Font, Items).Width;