29 references to InitLayout
System.Windows.Forms (10)
System\Windows\Forms\Control.cs (5)
623parent.LayoutEngine.InitLayout(this, BoundsSpecified.Size); 4226ParentInternal?.LayoutEngine.InitLayout(this, BoundsSpecified.All); 5763LayoutEngine.InitLayout(this, BoundsSpecified.All); 9447LayoutEngine.InitLayout(child, BoundsSpecified.All); 10126ParentInternal.LayoutEngine.InitLayout(this, specified);
System\Windows\Forms\Controls\Buttons\Button.cs (1)
67ParentInternal.LayoutEngine.InitLayout(this, BoundsSpecified.Size);
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
103ParentInternal.LayoutEngine.InitLayout(this, BoundsSpecified.Size);
System\Windows\Forms\Form.cs (1)
555toLayout.LayoutEngine.InitLayout(this, BoundsSpecified.Size);
System\Windows\Forms\Panels\Panel.cs (1)
86ParentInternal.LayoutEngine.InitLayout(this, BoundsSpecified.Size);
System\Windows\Forms\UserControl.cs (1)
90toLayout.LayoutEngine.InitLayout(this, BoundsSpecified.Size);
System.Windows.Forms.Tests (19)
System\Windows\Forms\ControlTests.ControlCollection.cs (3)
243.Setup(e => e.InitLayout(control, BoundsSpecified.All)) 258mockLayoutEngine.Verify(e => e.InitLayout(control, BoundsSpecified.All), Times.Once()); 270mockLayoutEngine.Verify(e => e.InitLayout(control, BoundsSpecified.All), Times.Once());
System\Windows\Forms\ControlTests.Methods.cs (9)
2929.Setup(e => e.InitLayout(control, BoundsSpecified.All)) 2934mockLayoutEngine.Verify(e => e.InitLayout(control, BoundsSpecified.All), Times.Once()); 2939mockLayoutEngine.Verify(e => e.InitLayout(control, BoundsSpecified.All), Times.Exactly(2)); 6721.Setup(e => e.InitLayout(child, BoundsSpecified.All)) 6729mockLayoutEngine.Verify(e => e.InitLayout(child, BoundsSpecified.All), Times.Exactly(expectedInitLayoutCallCount)); 6735mockLayoutEngine.Verify(e => e.InitLayout(child, BoundsSpecified.All), Times.Exactly(expectedInitLayoutCallCount * 2)); 6769.Setup(e => e.InitLayout(child, BoundsSpecified.All)) 6775mockLayoutEngine.Verify(e => e.InitLayout(child, BoundsSpecified.All), Times.Exactly(expectedInitLayoutCallCount)); 6781mockLayoutEngine.Verify(e => e.InitLayout(child, BoundsSpecified.All), Times.Exactly(expectedInitLayoutCallCount * 2));
System\Windows\Forms\ControlTests.Properties.cs (1)
1013.Setup(e => e.InitLayout(control, BoundsSpecified.None));
System\Windows\Forms\Layout\FlowLayoutTests.cs (3)
18engine.InitLayout(control, BoundsSpecified.All); 26Assert.Throws<NotSupportedException>(() => engine.InitLayout("child", BoundsSpecified.All)); 34Assert.Throws<ArgumentNullException>("child", () => engine.InitLayout(null, BoundsSpecified.All));
System\Windows\Forms\Layout\LayoutEngineTests.cs (3)
16engine.InitLayout(new ScrollableControl(), BoundsSpecified.All); 23Assert.Throws<NotSupportedException>(() => engine.InitLayout("child", BoundsSpecified.All)); 30Assert.Throws<ArgumentNullException>("child", () => engine.InitLayout(null, BoundsSpecified.All));