7 writes to WrapContents
System.Windows.Forms (4)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
932flowLayoutSettings.WrapContents = false;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.HorizontalRowManager.cs (1)
17FlowLayoutSettings.WrapContents = false;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.VerticalRowManager.cs (1)
18FlowLayoutSettings.WrapContents = false;
System\Windows\Forms\Panels\FlowLayoutPanel.cs (1)
48_flowLayoutSettings.WrapContents = value;
System.Windows.Forms.Tests (3)
System\Windows\Forms\FlowLayoutSettingsTests.cs (3)
74settings.WrapContents = value; 80settings.WrapContents = value; 86settings.WrapContents = !value;
7 references to WrapContents
System.Windows.Forms (2)
System\Windows\Forms\Panels\FlowLayoutPanel.cs (1)
45get => _flowLayoutSettings.WrapContents;
System\Windows\Forms\Panels\FlowLayoutSettings.cs (1)
41Debug.Assert(WrapContents == value, "WrapContents should be the same as we set it");
System.Windows.Forms.Tests (5)
System\Windows\Forms\FlowLayoutSettingsTests.cs (3)
75Assert.Equal(value, settings.WrapContents); 81Assert.Equal(value, settings.WrapContents); 87Assert.Equal(!value, settings.WrapContents);
System\Windows\Forms\ToolStripDropDownTests.cs (1)
3007Assert.False(settings.WrapContents);
System\Windows\Forms\ToolStripTests.cs (1)
4326Assert.True(settings.WrapContents);