3 writes to _tabIndex
System.Windows.Forms (3)
System\Windows\Forms\Control.ControlCollection.cs (1)
88value._tabIndex = nextTabIndex;
System\Windows\Forms\Control.cs (2)
333_tabIndex = -1; 3316_tabIndex = value;
18 references to _tabIndex
System.Windows.Forms (18)
System\Windows\Forms\Control.ControlCollection.cs (1)
75if (value._tabIndex == -1)
System\Windows\Forms\Control.cs (17)
3309get => _tabIndex == -1 ? 0 : _tabIndex; 3314if (_tabIndex != value) 5761if (found is null || found._tabIndex > children[c]._tabIndex) 5773if (found is null || found._tabIndex < children[c]._tabIndex) 5852int targetIndex = ctl!._tabIndex; 5879if (parentChildren[c]._tabIndex >= targetIndex) 5883if (found is null || found._tabIndex > parentChildren[c]._tabIndex) 5888if (parentChildren[c]._tabIndex != targetIndex || hitCtl) 5915int targetIndex = ctl._tabIndex; 5947if (sibling._tabIndex <= targetIndex) 5951if (found is null || found._tabIndex < sibling._tabIndex) 5956if (sibling._tabIndex != targetIndex || hitCtl)