9 references to GetNextItem
System.Windows.Forms (6)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (3)
2031return GetNextItem(start, direction); 3049ToolStripItem? nextItem = GetNextItem(currentSel, ArrowDirection.Down); 3058ToolStripItem? nextItem = GetNextItem(currentSel, ArrowDirection.Up);
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownMenu.cs (1)
541return GetNextItem(start, direction);
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.ToolStripItemAccessibleObject.cs (2)
258nextItem = (Owner.IsOnDropDown) ? parent.GetNextItem(Owner, ArrowDirection.Up) : 262nextItem = (Owner.IsOnDropDown) ? parent.GetNextItem(Owner, ArrowDirection.Down) :
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ToolStripDesigner.cs (2)
2020ToolStripItem nextItem = ToolStrip.GetNextItem(ToolStrip.OverflowButton, ArrowDirection.Left); 2050ToolStripItem nextItem = ddi.DropDown.GetNextItem(null, ArrowDirection.Down);
System\Windows\Forms\Design\ToolStripKeyboardHandlingService.cs (1)
310return parent.GetNextItem(startItem, direction);