8 writes to WrapContents
PresentationUI (5)
MS\Internal\Documents\RMPublishingDialog.Designer.cs (5)
87this.flowLayoutPanelMain.WrapContents = false; 194this.flowLayoutPanelPeople.WrapContents = false; 253this.flowLayoutPanelContact.WrapContents = true; 278this.flowLayoutPanelExpires.WrapContents = false; 308this.flowLayoutPanelActions.WrapContents = false;
System.Windows.Forms.Tests (3)
System\Windows\Forms\FlowLayoutPanelTests.cs (3)
195control.WrapContents = value; 201control.WrapContents = value; 207control.WrapContents = !value;
5 references to WrapContents
System.Windows.Forms (1)
System\Windows\Forms\Panels\FlowLayoutPanel.cs (1)
49Debug.Assert(WrapContents == value, "WrapContents should be the same as we set it");
System.Windows.Forms.Tests (4)
System\Windows\Forms\FlowLayoutPanelTests.cs (4)
118Assert.True(control.WrapContents); 196Assert.Equal(value, control.WrapContents); 202Assert.Equal(value, control.WrapContents); 208Assert.Equal(!value, control.WrapContents);