2 overrides of GetNextItem
System.Windows.Forms (2)
System\Windows\Forms\Controls\Menus\MenuStrip.cs (1)
154
internal override ToolStripItem?
GetNextItem
(ToolStripItem? start, ArrowDirection direction, bool rtlAware)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownMenu.cs (1)
524
internal override ToolStripItem?
GetNextItem
(ToolStripItem? start, ArrowDirection direction, bool rtlAware)
9 references to GetNextItem
System.Windows.Forms (9)
System\Windows\Forms\Controls\Menus\MenuStrip.cs (2)
156
ToolStripItem? nextItem = base.
GetNextItem
(start, direction, rtlAware);
159
nextItem = base.
GetNextItem
(nextItem, direction, rtlAware);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4152
ToolStripItem? nextItem =
GetNextItem
(start, forward ? ArrowDirection.Right : ArrowDirection.Left, rtlAware: true);
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.ToolStripItemAccessibleObject.cs (6)
244
nextItem = parent.
GetNextItem
(null, ArrowDirection.Right, /*RTLAware=*/true);
247
nextItem = parent.
GetNextItem
(null, ArrowDirection.Left, /*RTLAware=*/true);
251
nextItem = parent.
GetNextItem
(Owner, ArrowDirection.Left, /*RTLAware=*/true);
255
nextItem = parent.
GetNextItem
(Owner, ArrowDirection.Right, /*RTLAware=*/true);
259
parent.
GetNextItem
(Owner, ArrowDirection.Left, /*RTLAware=*/true);
263
parent.
GetNextItem
(Owner, ArrowDirection.Right, /*RTLAware=*/true);