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