13 references to Left
System.Windows.Forms (11)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4280addItem = (item.Alignment == ToolStripItemAlignment.Left);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.ToolStripAccessibleObject.cs (2)
64if (owner.Items[i].Available && owner.Items[i].Alignment == ToolStripItemAlignment.Left) 349if (owner.Items[i].Available && owner.Items[i].Alignment == ToolStripItemAlignment.Left)
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (2)
31private ToolStripItemAlignment _alignment = ToolStripItemAlignment.Left; 276[DefaultValue(ToolStripItemAlignment.Left)]
System\Windows\Forms\Controls\ToolStrips\ToolStripSplitStackDragDropHandler.cs (3)
89insertIndex = (item.Alignment == ToolStripItemAlignment.Left) ? insertIndex : insertIndex + 1; 93insertIndex = (item.Alignment == ToolStripItemAlignment.Left) ? insertIndex : insertIndex - 1; 95else if (((item.Alignment == ToolStripItemAlignment.Left) && (relativeLocation == RelativeLocation.Left)) ||
System\Windows\Forms\Controls\ToolStrips\ToolStripSplitStackLayout.cs (2)
291if (((item.Alignment == ToolStripItemAlignment.Right) && (toolStrip.RightToLeft == RightToLeft.No)) || ((item.Alignment == ToolStripItemAlignment.Left) && (toolStrip.RightToLeft == RightToLeft.Yes))) 442case ToolStripItemAlignment.Left:
System\Windows\Forms\MDI\MDIControlStrip.cs (1)
64_system.Alignment = ToolStripItemAlignment.Left;
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ToolStripItemCustomMenuItemCollection.cs (2)
152_leftToolStripMenuItem = CreateEnumValueItem("Alignment", "Left", ToolStripItemAlignment.Left); 618_leftToolStripMenuItem.Checked = currentAlignmentValue == ToolStripItemAlignment.Left;