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)
193control.WrapContents = value; 199control.WrapContents = value; 205control.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)
116Assert.True(control.WrapContents); 194Assert.Equal(value, control.WrapContents); 200Assert.Equal(value, control.WrapContents); 206Assert.Equal(!value, control.WrapContents);