39 references to ToolStripItemAlignment
System.Windows.Forms (32)
winforms\Managed\System\WinForms\MDIControlStrip.cs (2)
62item.Alignment = ToolStripItemAlignment.Right; 72system.Alignment = ToolStripItemAlignment.Left;
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (2)
1500this.pageToolStripLabel.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; 1556pageCounterItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
winforms\Managed\System\WinForms\ToolStrip.cs (16)
1522toolStripOverflowButton.Alignment = ToolStripItemAlignment.Right; 4385addItem = (item.Alignment == ToolStripItemAlignment.Left); 4392addItem = (item.Alignment == ToolStripItemAlignment.Right); 4870if (owner.Items[i].Available && owner.Items[i].Alignment == ToolStripItemAlignment.Left) { 4882if (owner.Items[i].Available && owner.Items[i].Alignment == ToolStripItemAlignment.Right) { 4944if (item.Available && item.Alignment == ToolStripItemAlignment.Left && fragmentIndex == index) { 4956if (item.Available && item.Alignment == ToolStripItemAlignment.Right && fragmentIndex == index) { 5013if (item.Available && item.Alignment == ToolStripItemAlignment.Left && child.Owner == items[index]) { 5021if (item.Available && item.Alignment == ToolStripItemAlignment.Right && child.Owner == items[index]) { 5048if (owner.Items[i].Available && owner.Items[i].Alignment == ToolStripItemAlignment.Left) { 5058if (owner.Items[i].Available && owner.Items[i].Alignment == ToolStripItemAlignment.Right) { 5426insertIndex = (item.Alignment == ToolStripItemAlignment.Left) ? insertIndex : insertIndex + 1; 5429insertIndex = (item.Alignment == ToolStripItemAlignment.Left) ? insertIndex : insertIndex-1; 5431else if (((item.Alignment == ToolStripItemAlignment.Left) && (relativeLocation == RelativeLocation.Left)) || 5432((item.Alignment == ToolStripItemAlignment.Right) && (relativeLocation == RelativeLocation.Right))) { 5522if (owner.DisplayedItems[i].Alignment == ToolStripItemAlignment.Right) {
winforms\Managed\System\WinForms\ToolStripItem.cs (7)
53private ToolStripItemAlignment alignment = ToolStripItemAlignment.Left; 338DefaultValue(ToolStripItemAlignment.Left), 342public ToolStripItemAlignment Alignment { 348if (!ClientUtils.IsEnumValid(value, (int)value, (int)ToolStripItemAlignment.Left, (int)ToolStripItemAlignment.Right)) 350throw new InvalidEnumArgumentException("value", (int)value, typeof(ToolStripItemAlignment));
winforms\Managed\System\WinForms\ToolStripSplitStackLayout.cs (4)
322if (((item.Alignment == ToolStripItemAlignment.Right) && (toolStrip.RightToLeft == RightToLeft.No)) || ((item.Alignment == ToolStripItemAlignment.Left) && (toolStrip.RightToLeft == RightToLeft.Yes))) { 459case ToolStripItemAlignment.Right: 466case ToolStripItemAlignment.Left:
winforms\Managed\System\WinForms\ToolStripStatusLabel.cs (1)
89public new ToolStripItemAlignment Alignment {
System.WorkflowServices (7)
System\Workflow\Activities\Design\OperationPickerDialog.designer.cs (3)
73this.importContractButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; 80this.toolStripButton1.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; 87this.addOperationButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.designer.cs (4)
132this.moveParameterDownButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; 141this.moveParameterUpButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; 150this.RemoveParameterButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; 159this.addParameterButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;