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