2 overrides of GetNextItem
System.Windows.Forms (2)
winforms\Managed\System\WinForms\MenuStrip.cs (1)
191
internal override ToolStripItem
GetNextItem
(ToolStripItem start, ArrowDirection direction, bool rtlAware) {
winforms\Managed\System\WinForms\ToolStripDropDownMenu.cs (1)
565
internal override ToolStripItem
GetNextItem
(ToolStripItem start, ArrowDirection direction, bool rtlAware) {
9 references to GetNextItem
System.Windows.Forms (9)
winforms\Managed\System\WinForms\MenuStrip.cs (2)
192
ToolStripItem nextItem = base.
GetNextItem
(start, direction, rtlAware);
194
nextItem = base.
GetNextItem
(nextItem, direction, rtlAware);
winforms\Managed\System\WinForms\ToolStrip.cs (1)
4264
ToolStripItem nextItem =
GetNextItem
(start, (forward) ? ArrowDirection.Right : ArrowDirection.Left, /*RTLAware=*/true);
winforms\Managed\System\WinForms\ToolStripItem.cs (6)
4341
nextItem = parent.
GetNextItem
(null, ArrowDirection.Right, /*RTLAware=*/true);
4344
nextItem = parent.
GetNextItem
(null, ArrowDirection.Left,/*RTLAware=*/true);
4348
nextItem = parent.
GetNextItem
(Owner, ArrowDirection.Left, /*RTLAware=*/true);
4352
nextItem = parent.
GetNextItem
(Owner, ArrowDirection.Right, /*RTLAware=*/true);
4356
parent.
GetNextItem
(Owner, ArrowDirection.Left, /*RTLAware=*/true);
4360
parent.
GetNextItem
(Owner, ArrowDirection.Right, /*RTLAware=*/true);