21 references to LeftToRight
PresentationUI (3)
MS\Internal\Documents\RMPublishingDialog.Designer.cs (2)
192this.flowLayoutPanelPeople.FlowDirection = System.Windows.Forms.FlowDirection.LeftToRight; 276this.flowLayoutPanelExpires.FlowDirection = System.Windows.Forms.FlowDirection.LeftToRight;
MS\Internal\Documents\SignatureSummaryDialog.Designer.cs (1)
77_flowpanelMiddleControls.FlowDirection = System.Windows.Forms.FlowDirection.LeftToRight;
System.Windows.Forms (8)
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflow.cs (2)
115if (FlowLayout.GetFlowDirection(this) != FlowDirection.LeftToRight) 117FlowLayout.SetFlowDirection(this, FlowDirection.LeftToRight);
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (1)
410FlowLayout.SetFlowDirection(this, FlowDirection.LeftToRight);
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.HorizontalRowManager.cs (1)
18FlowLayoutSettings.FlowDirection = FlowDirection.LeftToRight;
System\Windows\Forms\Layout\FlowLayout.cs (2)
319case FlowDirection.LeftToRight: 340case FlowDirection.LeftToRight:
System\Windows\Forms\Panels\FlowLayoutPanel.cs (1)
26[DefaultValue(FlowDirection.LeftToRight)]
System\Windows\Forms\Panels\FlowLayoutSettings.cs (1)
20[DefaultValue(FlowDirection.LeftToRight)]
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\FlowLayoutPanelDesigner .cs (6)
120FlowLayoutPanel.FlowDirection is FlowDirection.RightToLeft or FlowDirection.LeftToRight; 133FlowDirection.LeftToRight => FlowDirection.RightToLeft, 134FlowDirection.RightToLeft => FlowDirection.LeftToRight, 240if (flowDirection == FlowDirection.LeftToRight ? marginBounds.X < lastOffset : marginBounds.X > lastOffset) 395case FlowDirection.LeftToRight: 414case FlowDirection.LeftToRight:
System.Windows.Forms.Tests (4)
System\Windows\Forms\FlowLayoutPanelTests.cs (2)
71Assert.Equal(FlowDirection.LeftToRight, control.FlowDirection); 143[InlineData(FlowDirection.LeftToRight, 1)]
System\Windows\Forms\FlowLayoutSettingsTests.cs (1)
12[InlineData(FlowDirection.LeftToRight, 1)]
System\Windows\Forms\ToolStripTests.cs (1)
4323Assert.Equal(FlowDirection.LeftToRight, settings.FlowDirection);