21 references to Right
System.Windows.Forms (11)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (4)
2030
if (direction == ArrowDirection.
Right
)
2036
direction = ArrowDirection.
Right
;
2053
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)
1009
ArrowDirection arrowDir = (rightToLeft) ? ArrowDirection.Left : ArrowDirection.
Right
;
System\Windows\Forms\Controls\ToolStrips\ToolstripProfessionalRenderer.cs (2)
175
ArrowDirection direction = horizontal ? ArrowDirection.Down : ArrowDirection.
Right
;
1667
ArrowDirection.
Right
=>
System\Windows\Forms\Controls\ToolStrips\ToolStripRenderer.cs (1)
652
ArrowDirection.
Right
=>
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\ToolStripKeyboardHandlingService.cs (5)
301
if (parent.RightToLeft == RightToLeft.Yes && (direction == ArrowDirection.Left || direction == ArrowDirection.
Right
))
303
if (direction == ArrowDirection.
Right
)
309
direction = ArrowDirection.
Right
;
1267
targetSelection = GetNextItem(dropDownItem.DropDown, null, ArrowDirection.
Right
);
1962
targetSelection = GetNextItem(parent, item, ArrowDirection.
Right
);
System.Windows.Forms.Tests (5)
System\Windows\Forms\ToolStripTests.cs (5)
4821
ToolStripItem actual = toolStrip.GetNextItem(toolStrip.Items[0], ArrowDirection.
Right
);
4842
ToolStripItem nextToolStripItem1 = toolStrip.GetNextItem(toolStripButton1, ArrowDirection.
Right
);
4843
ToolStripItem nextToolStripItem2 = toolStrip.GetNextItem(toolStripButton2, ArrowDirection.
Right
);
4844
ToolStripItem nextToolStripItem3 = toolStrip.GetNextItem(toolStripButton3, ArrowDirection.
Right
);
7301
ToolStripItem previousToolStripItem2 = toolStrip.GetNextItem(start: null, ArrowDirection.
Right
);