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