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