39 writes to FlowDirection
Accessibility_Core_App (1)
ContainerControls.Designer.cs (1)
127this.flowLayoutPanel2.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
PresentationUI (23)
MS\Internal\Documents\CredentialManagerDialog.Designer.cs (1)
79this._buttonFlowLayoutPanel.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
MS\Internal\Documents\RequestedSignatureDialog.Designer.cs (1)
61_buttomControlLayoutpanel.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
MS\Internal\Documents\RMEnrollmentPage1.Designer.cs (3)
77_flowLayoutPanel2.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; 101_flowLayoutPanel4.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; 180_flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
MS\Internal\Documents\RMEnrollmentPage2.Designer.cs (2)
66this._flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft; 98this._flowLayoutPanel2.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
MS\Internal\Documents\RMPermissions.Designer.cs (5)
67this.mainContentFlowPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; 78this.authenticatedAsFlowPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; 97this.permissionsFlowPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; 110this.contactFlowPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; 149this.actionsFlowPanel.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
MS\Internal\Documents\RMPublishingDialog.Designer.cs (8)
84this.flowLayoutPanelMain.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; 132this.flowLayoutPanelUnrestricted.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; 144this.flowLayoutPanelPermissions.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; 154this.flowLayoutPanelTemplate.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; 192this.flowLayoutPanelPeople.FlowDirection = System.Windows.Forms.FlowDirection.LeftToRight; 251this.flowLayoutPanelContact.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; 276this.flowLayoutPanelExpires.FlowDirection = System.Windows.Forms.FlowDirection.LeftToRight; 304this.flowLayoutPanelActions.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
MS\Internal\Documents\SignatureSummaryDialog.Designer.cs (2)
77_flowpanelMiddleControls.FlowDirection = System.Windows.Forms.FlowDirection.LeftToRight; 90_flowpanelBottomControls.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
MS\Internal\Documents\SigningDialog.Designer.cs (1)
185_buttonflowLayoutPanel.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\FlowLayoutPanelDesigner .cs (1)
386Control.FlowDirection = value;
System.Windows.Forms.Tests (9)
System\Windows\Forms\ControlTests.cs (3)
872FlowDirection = FlowDirection.TopDown 883FlowDirection = FlowDirection.TopDown 894FlowDirection = FlowDirection.TopDown
System\Windows\Forms\FlowLayoutPanelTests.cs (3)
158control.FlowDirection = value; 164control.FlowDirection = value; 175Assert.Throws<InvalidEnumArgumentException>("value", () => control.FlowDirection = value);
System\Windows\Forms\Layout\FlowLayoutTests.cs (3)
98FlowDirection = FlowDirection.RightToLeft 159FlowDirection = FlowDirection.TopDown 220FlowDirection = FlowDirection.BottomUp
WinFormsControlsTest (5)
Buttons.cs (3)
43FlowDirection = FlowDirection.TopDown 64FlowDirection = FlowDirection.TopDown 85FlowDirection = FlowDirection.TopDown
MainForm.Designer.cs (1)
41this.overarchingFlowLayoutPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
TaskDialogSamples.cs (1)
23FlowDirection = FlowDirection.TopDown,
11 references to FlowDirection
System.Windows.Forms (2)
System\Windows\Forms\Panels\FlowLayoutPanel.cs (2)
10[DefaultProperty(nameof(FlowDirection))] 35Debug.Assert(FlowDirection == value, "FlowDirection should be the same as we set it");
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\FlowLayoutPanelDesigner .cs (6)
120FlowLayoutPanel.FlowDirection is FlowDirection.RightToLeft or FlowDirection.LeftToRight; 180FlowDirection flowDirection = RTLTranslateFlowDirection(FlowLayoutPanel.FlowDirection); 378get => Control.FlowDirection; 381if (value != Control.FlowDirection) 393switch (RTLTranslateFlowDirection(FlowLayoutPanel.FlowDirection)) 412switch (RTLTranslateFlowDirection(FlowLayoutPanel.FlowDirection))
System.Windows.Forms.Tests (3)
System\Windows\Forms\FlowLayoutPanelTests.cs (3)
71Assert.Equal(FlowDirection.LeftToRight, control.FlowDirection); 159Assert.Equal(value, control.FlowDirection); 165Assert.Equal(value, control.FlowDirection);