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