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