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