18 references to Right
System.Windows.Forms (13)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (4)
2021if (direction == ArrowDirection.Right) 2027direction = ArrowDirection.Right; 2044case ArrowDirection.Right: 4151ToolStripItem? nextItem = GetNextItem(start, forward ? ArrowDirection.Right : ArrowDirection.Left, rtlAware: true);
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.ToolStripItemAccessibleObject.cs (3)
244nextItem = parent.GetNextItem(null, ArrowDirection.Right, /*RTLAware=*/true); 255nextItem = parent.GetNextItem(Owner, ArrowDirection.Right, /*RTLAware=*/true); 263parent.GetNextItem(Owner, ArrowDirection.Right, /*RTLAware=*/true);
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (1)
1006ArrowDirection arrowDir = (rightToLeft) ? ArrowDirection.Left : ArrowDirection.Right;
System\Windows\Forms\Controls\ToolStrips\ToolstripProfessionalRenderer.cs (2)
175ArrowDirection direction = horizontal ? ArrowDirection.Down : ArrowDirection.Right; 1666ArrowDirection.Right =>
System\Windows\Forms\Controls\ToolStrips\ToolStripRenderer.cs (1)
680case ArrowDirection.Right:
System\Windows\Forms\Controls\ToolStrips\ToolStripSystemDarkModeRenderer.cs (2)
463arrowDirection = ArrowDirection.Right; 490ArrowDirection.Right =>
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\ToolStripKeyboardHandlingService.cs (5)
298if (parent.RightToLeft == RightToLeft.Yes && (direction == ArrowDirection.Left || direction == ArrowDirection.Right)) 300if (direction == ArrowDirection.Right) 306direction = ArrowDirection.Right; 1241targetSelection = GetNextItem(dropDownItem.DropDown, null, ArrowDirection.Right); 1924targetSelection = GetNextItem(parent, item, ArrowDirection.Right);