8 writes to FlowDirection
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
931flowLayoutSettings.FlowDirection = FlowDirection.TopDown;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownMenu.cs (1)
536FlowDirection = FlowDirection.TopDown
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.HorizontalRowManager.cs (1)
18FlowLayoutSettings.FlowDirection = FlowDirection.LeftToRight;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.VerticalRowManager.cs (1)
19FlowLayoutSettings.FlowDirection = FlowDirection.TopDown;
System\Windows\Forms\Panels\FlowLayoutPanel.cs (1)
34_flowLayoutSettings.FlowDirection = value;
System.Windows.Forms.Tests (3)
System\Windows\Forms\FlowLayoutSettingsTests.cs (3)
31settings.FlowDirection = value; 37settings.FlowDirection = value; 52Assert.Throws<InvalidEnumArgumentException>("value", () => settings.FlowDirection = value);
7 references to FlowDirection
System.Windows.Forms (3)
System\Windows\Forms\Panels\FlowLayoutPanel.cs (1)
31get => _flowLayoutSettings.FlowDirection;
System\Windows\Forms\Panels\FlowLayoutSettings.cs (2)
9[DefaultProperty(nameof(FlowDirection))] 28Debug.Assert(FlowDirection == value, "FlowDirection should be the same as we set it");
System.Windows.Forms.Tests (4)
System\Windows\Forms\FlowLayoutSettingsTests.cs (2)
32Assert.Equal(value, settings.FlowDirection); 38Assert.Equal(value, settings.FlowDirection);
System\Windows\Forms\ToolStripDropDownTests.cs (1)
3005Assert.Equal(FlowDirection.TopDown, settings.FlowDirection);
System\Windows\Forms\ToolStripTests.cs (1)
4323Assert.Equal(FlowDirection.LeftToRight, settings.FlowDirection);