1 instantiation of TableLayout
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Layout\TableLayout.cs (1)
127internal static readonly TableLayout Instance = new TableLayout();
56 references to TableLayout
System.Windows.Forms (56)
winforms\Managed\System\WinForms\Layout\TableLayout.cs (1)
127internal static readonly TableLayout Instance = new TableLayout();
winforms\Managed\System\WinForms\TableLayoutPanel.cs (14)
39_tableLayoutSettings = TableLayout.CreateSettings(this); 44get { return TableLayout.Instance; } 324TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(this); 342TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(this); 400TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(this); 401TableLayout.Strip[] colStrips = containerInfo.Columns; 402TableLayout.Strip[] rowStrips = containerInfo.Rows; 437Rectangle outsideCellBounds = new Rectangle(startx, starty, ((TableLayout.Strip)colStrips[i]).MinSize, ((TableLayout.Strip)rowStrips[j]).MinSize); 506TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(this);
winforms\Managed\System\WinForms\TableLayoutSettings.cs (39)
66get { return TableLayout.Instance; } 69private TableLayout TableLayout { 70get { return (TableLayout) this.LayoutEngine; } 86TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 95get { return TableLayout.GetContainerInfo(Owner).CellBorderWidth; } 109TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 116TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 135TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 142TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 160TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 176TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 193return TableLayout.GetContainerInfo(Owner).GrowStyle; 202TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 243return TableLayout.GetLayoutInfo(element).ColumnSpan; 258TableLayout.ClearCachedAssignments(TableLayout.GetContainerInfo(element.Container)); 260TableLayout.GetLayoutInfo(element).ColumnSpan = value; 273return TableLayout.GetLayoutInfo(element).RowSpan; 293TableLayout.ClearCachedAssignments(TableLayout.GetContainerInfo(element.Container)); 295TableLayout.GetLayoutInfo(element).RowSpan = value; 315TableLayout.LayoutInfo layoutInfo = TableLayout.GetLayoutInfo(element); 370TableLayout.LayoutInfo layoutInfo = TableLayout.GetLayoutInfo(element); 404TableLayout.ClearCachedAssignments(TableLayout.GetContainerInfo(element.Container)); 406TableLayout.LayoutInfo layoutInfo = TableLayout.GetLayoutInfo(element); 518TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(settings.Owner);
winforms\Managed\System\WinForms\ToolStrip.cs (2)
1367if (!(layoutEngine is TableLayout)) { 1368layoutEngine = TableLayout.Instance;