27 references to Left
System.Windows.Forms (10)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (4)
2114direction = ArrowDirection.Left; 2116else if (direction == ArrowDirection.Left) 2137case ArrowDirection.Left: 4263ToolStripItem? nextItem = GetNextItem(start, forward ? ArrowDirection.Right : ArrowDirection.Left, rtlAware: true);
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.ToolStripItemAccessibleObject.cs (3)
247nextItem = parent.GetNextItem(null, ArrowDirection.Left, /*RTLAware=*/true); 251nextItem = parent.GetNextItem(Owner, ArrowDirection.Left, /*RTLAware=*/true); 259parent.GetNextItem(Owner, ArrowDirection.Left, /*RTLAware=*/true);
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (1)
1014ArrowDirection arrowDir = (rightToLeft) ? ArrowDirection.Left : ArrowDirection.Right;
System\Windows\Forms\Controls\ToolStrips\ToolstripProfessionalRenderer.cs (1)
1661ArrowDirection.Left =>
System\Windows\Forms\Controls\ToolStrips\ToolStripRenderer.cs (1)
646ArrowDirection.Left =>
System.Windows.Forms.Design (10)
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
2024ToolStripItem nextItem = ToolStrip.GetNextItem(ToolStrip.OverflowButton, ArrowDirection.Left);
System\Windows\Forms\Design\ToolStripKeyboardHandlingService.cs (9)
301if (parent.RightToLeft == RightToLeft.Yes && (direction == ArrowDirection.Left || direction == ArrowDirection.Right)) 305direction = ArrowDirection.Left; 307else if (direction == ArrowDirection.Left) 1239? GetNextItem(parent, toolStripItem, ArrowDirection.Left) 1291targetSelection = GetNextItem(mainTool, owner, ArrowDirection.Left); 1441targetSelection = GetNextItem(owner, parentToMoveOn.OwnerItem, ArrowDirection.Left); 1888targetSelection = GetNextItem(owner, ((ToolStripDropDown)parent).OwnerItem, ArrowDirection.Left); 1893targetSelection = GetNextItem(parent, item, ArrowDirection.Left); 1934targetSelection = GetNextItem(parent, item, ArrowDirection.Left);
System.Windows.Forms.Tests (7)
System\Windows\Forms\ToolStripRendererTests.cs (2)
34yield return new object[] { null, Rectangle.Empty, Color.Empty, ArrowDirection.Left - 1 }; 36yield return new object[] { new SubToolStripItem(), new Rectangle(1, 2, 3, 4), Color.Red, ArrowDirection.Left - 1 };
System\Windows\Forms\ToolStripTests.cs (5)
4867ToolStripItem actual = toolStrip.GetNextItem(toolStrip.Items[0], ArrowDirection.Left); 4888ToolStripItem previousToolStripItem1 = toolStrip.GetNextItem(toolStripButton1, ArrowDirection.Left); 4889ToolStripItem previousToolStripItem2 = toolStrip.GetNextItem(toolStripButton3, ArrowDirection.Left); 4890ToolStripItem previousToolStripItem3 = toolStrip.GetNextItem(toolStripButton2, ArrowDirection.Left); 7298ToolStripItem previousToolStripItem1 = toolStrip.GetNextItem(start: null, ArrowDirection.Left);