3 writes to _domainIndex
System.Windows.Forms (3)
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (3)
221
_domainIndex
= matchIndex;
385
_domainIndex
= index;
479
_domainIndex
= matchIndex;
15 references to _domainIndex
System.Windows.Forms (15)
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (12)
94
return
_domainIndex
;
215
matchIndex = MatchIndex(Text, false,
_domainIndex
);
227
if (
_domainIndex
< _domainItems.Count - 1)
229
SelectIndex(
_domainIndex
+ 1);
247
return MatchIndex(text, complete,
_domainIndex
);
347
int matchIndex = MatchIndex(new string(character), false,
_domainIndex
+ 1);
386
if (
_domainIndex
>= 0)
388
_stringValue = _domainItems[
_domainIndex
]!.ToString()!;
397
Debug.Assert(
_domainIndex
>= 0 || UserEdit, $"UserEdit should be true when domainIndex < 0 {UserEdit}");
473
matchIndex = MatchIndex(Text, false,
_domainIndex
);
485
if (
_domainIndex
> 0)
487
SelectIndex(
_domainIndex
- 1);
System\Windows\Forms\Controls\UpDown\DomainUpDown.DomainUpDownItemCollection.cs (3)
88
if (item < _owner.
_domainIndex
)
91
_owner.SelectIndex(_owner.
_domainIndex
- 1);
93
else if (item == _owner.
_domainIndex
)