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