3 writes to domainIndex
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DomainUpDown.cs (3)
306
domainIndex
= matchIndex;
472
domainIndex
= index;
568
domainIndex
= matchIndex;
16 references to domainIndex
System.Windows.Forms (16)
winforms\Managed\System\WinForms\DomainUpDown.cs (16)
144
return
domainIndex
;
299
matchIndex = MatchIndex(Text, false,
domainIndex
);
317
if (
domainIndex
< domainItems.Count - 1) {
318
SelectIndex(
domainIndex
+ 1);
336
return MatchIndex(text, complete,
domainIndex
);
427
int matchIndex = MatchIndex(new string(character), false,
domainIndex
+ 1);
473
if (
domainIndex
>= 0) {
474
stringValue = domainItems[
domainIndex
].ToString();
482
Debug.Assert(
domainIndex
>=0 || UserEdit == true, "UserEdit should be true when domainIndex < 0 " + UserEdit);
553
if (
domainIndex
== -1 && LocalAppContextSwitches.UseLegacyDomainUpDownControlScrolling) {
560
matchIndex = MatchIndex(Text, false,
domainIndex
);
578
if (
domainIndex
> 0) {
579
SelectIndex(
domainIndex
- 1);
684
if (item < owner.
domainIndex
) {
686
owner.SelectIndex(owner.
domainIndex
- 1);
688
else if (item == owner.
domainIndex
) {