1 instantiation of TableLayout
System.Windows.Forms (1)
System\Windows\Forms\Layout\TableLayout.cs (1)
37
internal static TableLayout Instance { get; } =
new
();
55 references to TableLayout
System.Windows.Forms (55)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (2)
1215
if (_layoutEngine is not
TableLayout
)
1217
_layoutEngine =
TableLayout
.Instance;
System\Windows\Forms\Layout\CommonProperties.cs (1)
694
/// The <see cref="
TableLayout
"/> engine now calls <see cref="SetLayoutBounds(IArrangedElement, Size)"/> when it
System\Windows\Forms\Layout\TableLayout.cs (1)
37
internal static
TableLayout
Instance { get; } = new();
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (12)
29
_tableLayoutSettings =
TableLayout
.CreateSettings(this);
32
public override LayoutEngine LayoutEngine =>
TableLayout
.Instance;
265
TableLayout
.ContainerInfo containerInfo =
TableLayout
.GetContainerInfo(this);
287
TableLayout
.ContainerInfo containerInfo =
TableLayout
.GetContainerInfo(this);
337
TableLayout
.ContainerInfo containerInfo =
TableLayout
.GetContainerInfo(this);
338
TableLayout
.Strip[] colStrips = containerInfo.Columns;
339
TableLayout
.Strip[] rowStrips = containerInfo.Rows;
502
TableLayout
.ContainerInfo containerInfo =
TableLayout
.GetContainerInfo(this);
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (37)
58
public override LayoutEngine LayoutEngine =>
TableLayout
.Instance;
75
TableLayout
.ContainerInfo containerInfo =
TableLayout
.GetContainerInfo(Owner!);
83
internal int CellBorderWidth =>
TableLayout
.GetContainerInfo(Owner!).CellBorderWidth;
97
TableLayout
.ContainerInfo containerInfo =
TableLayout
.GetContainerInfo(Owner!);
104
TableLayout
.ContainerInfo containerInfo =
TableLayout
.GetContainerInfo(Owner!);
123
TableLayout
.ContainerInfo containerInfo =
TableLayout
.GetContainerInfo(Owner!);
130
TableLayout
.ContainerInfo containerInfo =
TableLayout
.GetContainerInfo(Owner!);
150
TableLayout
.ContainerInfo containerInfo =
TableLayout
.GetContainerInfo(Owner!);
169
TableLayout
.ContainerInfo containerInfo =
TableLayout
.GetContainerInfo(Owner!);
185
get =>
TableLayout
.GetContainerInfo(Owner!).GrowStyle;
192
TableLayout
.ContainerInfo containerInfo =
TableLayout
.GetContainerInfo(Owner!);
245
return
TableLayout
.GetLayoutInfo(element).ColumnSpan;
263
TableLayout
.ClearCachedAssignments(
TableLayout
.GetContainerInfo(element.Container));
266
TableLayout
.GetLayoutInfo(element).ColumnSpan = value;
283
return
TableLayout
.GetLayoutInfo(element).RowSpan;
301
TableLayout
.ClearCachedAssignments(
TableLayout
.GetContainerInfo(element.Container));
304
TableLayout
.GetLayoutInfo(element).RowSpan = value;
327
TableLayout
.LayoutInfo layoutInfo =
TableLayout
.GetLayoutInfo(element);
388
TableLayout
.LayoutInfo layoutInfo =
TableLayout
.GetLayoutInfo(element);
432
TableLayout
.ClearCachedAssignments(
TableLayout
.GetContainerInfo(element.Container));
435
TableLayout
.LayoutInfo layoutInfo =
TableLayout
.GetLayoutInfo(element);
457
return
TableLayout
.GetControlFromPosition(Owner!, column, row);
462
return
TableLayout
.GetPositionFromControl(Owner, element);
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.TableLayoutSettingsStub.cs (2)
32
TableLayout
.ContainerInfo containerInfo =
TableLayout
.GetContainerInfo(settings.Owner!);