4 overrides of LayoutEngine
System.Windows.Forms (4)
winforms\Managed\System\WinForms\FlowLayoutPanel.cs (1)
32
public override LayoutEngine
LayoutEngine
{
winforms\Managed\System\WinForms\TableLayoutPanel.cs (1)
43
public override LayoutEngine
LayoutEngine
{
winforms\Managed\System\WinForms\ToolStrip.cs (1)
1440
public override LayoutEngine
LayoutEngine
{
winforms\Managed\System\WinForms\ToolStripPanel.cs (1)
219
public override LayoutEngine
LayoutEngine
{
26 references to LayoutEngine
System.Windows.Forms (26)
winforms\Managed\System\WinForms\Button.cs (2)
95
if(ParentInternal.
LayoutEngine
== DefaultLayout.Instance) {
96
ParentInternal.
LayoutEngine
.InitLayout(this, BoundsSpecified.Size);
winforms\Managed\System\WinForms\ContainerControl.cs (1)
709
return
LayoutEngine
.GetPreferredSize(this, proposedSize - totalPadding) + totalPadding;
winforms\Managed\System\WinForms\Control.cs (9)
959
if(value && ParentInternal.
LayoutEngine
== DefaultLayout.Instance) {
960
ParentInternal.
LayoutEngine
.InitLayout(this, BoundsSpecified.Size);
5534
if (ParentInternal != null) ParentInternal.
LayoutEngine
.InitLayout(this, BoundsSpecified.All);
7120
LayoutEngine
.InitLayout(this, BoundsSpecified.All);
9133
bool parentRequiresLayout =
LayoutEngine
.Layout(this, levent);
9942
LayoutEngine
.ProcessSuspendedLayoutEventArgs(this, args);
11223
LayoutEngine
.InitLayout(controlsCollection[i], BoundsSpecified.All);
11556
if (DpiHelper.EnableAnchorLayoutHighDpiImprovements && (ParentInternal != null) && (ParentInternal.
LayoutEngine
== DefaultLayout.Instance)) {
11925
ParentInternal.
LayoutEngine
.InitLayout(this, specified);
winforms\Managed\System\WinForms\Form.cs (2)
719
if(toLayout.
LayoutEngine
== DefaultLayout.Instance) {
720
toLayout.
LayoutEngine
.InitLayout(this, BoundsSpecified.Size);
winforms\Managed\System\WinForms\GroupBox.cs (3)
141
if(ParentInternal.
LayoutEngine
== DefaultLayout.Instance) {
142
ParentInternal.
LayoutEngine
.InitLayout(this, BoundsSpecified.Size);
696
Size prefSize =
LayoutEngine
.GetPreferredSize(this, proposedSize - totalPadding);
winforms\Managed\System\WinForms\Layout\CommonProperties.cs (1)
458
if (((Control)element.Container).
LayoutEngine
is DefaultLayout) {
winforms\Managed\System\WinForms\Layout\TableLayout.cs (2)
708
if (tlp != null && tlp.ParentInternal != null && tlp.ParentInternal.
LayoutEngine
== DefaultLayout.Instance) {
818
if (tlp != null && tlp.ParentInternal != null && tlp.ParentInternal.
LayoutEngine
== DefaultLayout.Instance) {
winforms\Managed\System\WinForms\Panel.cs (3)
112
if(ParentInternal.
LayoutEngine
== DefaultLayout.Instance) {
113
ParentInternal.
LayoutEngine
.InitLayout(this, BoundsSpecified.Size);
197
return
LayoutEngine
.GetPreferredSize(this, proposedSize - totalPadding) + totalPadding;
winforms\Managed\System\WinForms\ScrollableControl.cs (1)
492
bool defaultLayoutEngine = (
LayoutEngine
== DefaultLayout.Instance);
winforms\Managed\System\WinForms\UserControl.cs (2)
113
if(toLayout.
LayoutEngine
== DefaultLayout.Instance) {
114
toLayout.
LayoutEngine
.InitLayout(this, BoundsSpecified.Size);