11 references to Items
System.Windows.Forms (11)
winforms\Managed\System\WinForms\DomainUpDown.cs (11)
149
if (value < -1 || value >=
Items
.Count) {
175
return(index == -1) ? null :
Items
[index];
187
for (int i = 0; i <
Items
.Count; i++) {
188
if (value != null && value.Equals(
Items
[i])) {
374
found =
Items
[index].ToString().Equals(text);
376
found =
Items
[index].ToString().ToUpper(CultureInfo.InvariantCulture).StartsWith(text);
529
if (
Items
!= null) {
530
s += ", Items.Count: " +
Items
.Count.ToString(CultureInfo.CurrentCulture);
606
int width = LayoutUtils.OldGetLargestStringSizeInCollection(Font,
Items
).Width;
852
return new DomainItemAccessibleObject(((DomainUpDown)parent.Owner).
Items
[index].ToString(), this);
859
return ((DomainUpDown)parent.Owner).
Items
.Count;