3 writes to _domainIndex
System.Windows.Forms (3)
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (3)
225
_domainIndex
= matchIndex;
395
_domainIndex
= index;
489
_domainIndex
= matchIndex;
15 references to _domainIndex
System.Windows.Forms (15)
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (12)
94
return
_domainIndex
;
219
matchIndex = MatchIndex(Text, false,
_domainIndex
);
231
if (
_domainIndex
< _domainItems.Count - 1)
233
SelectIndex(
_domainIndex
+ 1);
251
return MatchIndex(text, complete,
_domainIndex
);
355
int matchIndex = MatchIndex(new string(character), false,
_domainIndex
+ 1);
396
if (
_domainIndex
>= 0)
398
_stringValue = _domainItems[
_domainIndex
]!.ToString()!;
407
Debug.Assert(
_domainIndex
>= 0 || UserEdit, $"UserEdit should be true when domainIndex < 0 {UserEdit}");
483
matchIndex = MatchIndex(Text, false,
_domainIndex
);
495
if (
_domainIndex
> 0)
497
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
)