6 references to GetNextItem
System.Windows.Forms (6)
winforms\Managed\System\WinForms\ToolStrip.cs (3)
2218return GetNextItem(start, direction); 3195ToolStripItem nextItem = GetNextItem(currentSel, ArrowDirection.Down); 3202ToolStripItem nextItem = GetNextItem(currentSel, ArrowDirection.Up);
winforms\Managed\System\WinForms\ToolStripDropDownMenu.cs (1)
567return GetNextItem(start, direction);
winforms\Managed\System\WinForms\ToolStripItem.cs (2)
4355nextItem = (Owner.IsOnDropDown) ? parent.GetNextItem(Owner, ArrowDirection.Up): 4359nextItem = (Owner.IsOnDropDown) ? parent.GetNextItem(Owner, ArrowDirection.Down):