3 writes to tabIndex
System.Windows.Forms (3)
winforms\Managed\System\WinForms\Control.cs (3)
499tabIndex = -1; 3936tabIndex = value; 14784value.tabIndex = nextTabIndex;
18 references to tabIndex
System.Windows.Forms (18)
winforms\Managed\System\WinForms\Control.cs (18)
3928return tabIndex == -1 ? 0 : tabIndex; 3935if (tabIndex != value) { 6843if (found == null || found.tabIndex > ctlControls[c].tabIndex) { 6854if (found == null || found.tabIndex < ctlControls[c].tabIndex) { 6884int targetIndex = ctl.tabIndex; 6913if (parentControls[c].tabIndex >= targetIndex) { 6918if (found == null || found.tabIndex > parentControls[c].tabIndex) { 6924if (parentControls[c].tabIndex != targetIndex || hitCtl) { 6948int targetIndex = ctl.tabIndex; 6976if (parentControls[c].tabIndex <= targetIndex) { 6981if (found == null || found.tabIndex < parentControls[c].tabIndex) { 6987if (parentControls[c].tabIndex != targetIndex || hitCtl) { 14773if (value.tabIndex == -1) {