3 writes to _domainIndex
System.Windows.Forms (3)
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (3)
227
_domainIndex
= matchIndex;
391
_domainIndex
= index;
485
_domainIndex
= matchIndex;
15 references to _domainIndex
System.Windows.Forms (15)
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (12)
100
return
_domainIndex
;
221
matchIndex = MatchIndex(Text, false,
_domainIndex
);
233
if (
_domainIndex
< _domainItems.Count - 1)
235
SelectIndex(
_domainIndex
+ 1);
253
return MatchIndex(text, complete,
_domainIndex
);
353
int matchIndex = MatchIndex(new string(character), false,
_domainIndex
+ 1);
392
if (
_domainIndex
>= 0)
394
_stringValue = _domainItems[
_domainIndex
]!.ToString()!;
403
Debug.Assert(
_domainIndex
>= 0 || UserEdit, $"UserEdit should be true when domainIndex < 0 {UserEdit}");
479
matchIndex = MatchIndex(Text, false,
_domainIndex
);
491
if (
_domainIndex
> 0)
493
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
)