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