13 references to Left
System.Windows.Forms (13)
winforms\Managed\System\WinForms\ToolStrip.cs (3)
705direction = (actualDock == DockStyle.Right) ? ToolStripDropDownDirection.Left : ToolStripDropDownDirection.Right; 713direction = ((Dock == DockStyle.Right) && (RightToLeft == RightToLeft.No)) ? ToolStripDropDownDirection.Left : ToolStripDropDownDirection.Right; 744case ToolStripDropDownDirection.Left:
winforms\Managed\System\WinForms\ToolStripDropDown.cs (2)
385return (RightToLeft == RightToLeft.Yes)? ToolStripDropDownDirection.Left : ToolStripDropDownDirection.Right; 1261case ToolStripDropDownDirection.Left:
winforms\Managed\System\WinForms\ToolStripDropDownItem.cs (7)
154case ToolStripDropDownDirection.Left: 336case ToolStripDropDownDirection.Left: 395dropDownBounds = DropDownDirectionToDropDownBounds(!rtl ? ToolStripDropDownDirection.Right : ToolStripDropDownDirection.Left, dropDownBounds); 400dropDownBounds = DropDownDirectionToDropDownBounds(!rtl ? ToolStripDropDownDirection.Left : ToolStripDropDownDirection.Right, dropDownBounds); 639return ToolStripDropDownDirection.Left; 640case ToolStripDropDownDirection.Left: 647return (rightToLeft == RightToLeft.Yes) ? ToolStripDropDownDirection.Left : ToolStripDropDownDirection.Right;
winforms\Managed\System\WinForms\ToolStripRenderEventArgs.cs (1)
135case ToolStripDropDownDirection.Left: