10 references to GetNextControl
System.Windows.Forms (9)
System\Windows\Forms\Accessibility\Control.ControlAccessibleObject.cs (2)
405for (Control? previous = container.GetNextControl(owner, false); 407previous = container.GetNextControl(previous, false))
System\Windows\Forms\Control.cs (2)
5755return ctl.ToolStripControlHost is not null ? GetNextControl(ctl._parent, forward: false) : parent; 9988ctl = GetNextControl(ctl, forward);
System\Windows\Forms\Layout\Containers\ContainerControl.cs (2)
439ctl = GetNextControl(ctl, true); 1279ctl = GetNextControl(ctl, true);
System\Windows\Forms\Layout\Containers\SplitContainer.cs (3)
1837ctl = GetNextControl(ctl, forward); 1939ctl = GetNextControl(ctl, forward); 1973ctl = GetNextControl(ctl, forward);
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\TabOrder.cs (1)
721while ((control = form.GetNextControl(control, forward)) is not null)