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