3 writes to _tabIndex
System.Windows.Forms (3)
System\Windows\Forms\Control.ControlCollection.cs (1)
88value._tabIndex = nextTabIndex;
System\Windows\Forms\Control.cs (2)
328_tabIndex = -1; 3114_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)
3107get => _tabIndex == -1 ? 0 : _tabIndex; 3112if (_tabIndex != value) 5514if (found is null || found._tabIndex > children[c]._tabIndex) 5526if (found is null || found._tabIndex < children[c]._tabIndex) 5605int targetIndex = ctl!._tabIndex; 5632if (parentChildren[c]._tabIndex >= targetIndex) 5636if (found is null || found._tabIndex > parentChildren[c]._tabIndex) 5641if (parentChildren[c]._tabIndex != targetIndex || hitCtl) 5668int targetIndex = ctl._tabIndex; 5700if (sibling._tabIndex <= targetIndex) 5704if (found is null || found._tabIndex < sibling._tabIndex) 5709if (sibling._tabIndex != targetIndex || hitCtl)