--- title: Arranging Controls Using a TableLayoutPanel description: Learn how to arrange controls on your Windows Forms by using the FlowLayoutPanel control and the TableLayoutPanel control. ms.date: "03/30/2017" helpviewer_keywords: - "controls [Windows Forms], arranging with TableLayoutPanel" - "TableLayoutPanel control [Windows Forms], walkthroughs" - "Windows Forms controls, arranging" ms.assetid: d474885e-12cc-4ab7-b997-2a23a643049b --- # Walkthrough: Arranging Controls on Windows Forms Using a TableLayoutPanel Some applications require a form with a layout that arranges itself appropriately as the form is resized or as the contents change in size. When you need a dynamic layout and you do not want to handle events explicitly in your code, consider using a layout panel. The control and the control provide intuitive ways to arrange controls on your form. Both provide an automatic, configurable ability to control the relative positions of child controls contained within them, and both give you dynamic layout features at run time, so they can resize and reposition child controls as the dimensions of the parent form change. Layout panels can be nested within layout panels, to enable the realization of sophisticated user interfaces. The arranges its contents in a specific flow direction: horizontal or vertical. Its contents can be wrapped from one row to the next, or from one column to the next. Alternately, its contents can be clipped instead of wrapped. For more information, see [Walkthrough: Arranging Controls on Windows Forms Using a FlowLayoutPanel](walkthrough-arranging-controls-on-windows-forms-using-a-flowlayoutpanel.md). The arranges its contents in a grid, providing functionality similar to the HTML \ element. The control allows you to place controls in a grid layout without requiring you to precisely specify the position of each individual control. Its cells are arranged in rows and columns, and these can have different sizes. Cells can be merged across rows and columns. Cells can contain anything a form can contain and behave in most other respects as containers. The control also provides a proportional resizing capability at run time, so your layout can change smoothly as your form is resized. This makes the control well suited for purposes such as data-entry forms and localized applications. For more information, see [Walkthrough: Creating a Resizable Windows Form for Data Entry](/previous-versions/visualstudio/visual-studio-2010/991eahec(v=vs.100)) and [Walkthrough: Creating a Localizable Windows Form](/previous-versions/visualstudio/visual-studio-2010/7k9fa71y(v=vs.100)). In general, you should not use a control as a container for the whole layout. Use controls to provide proportional resizing capabilities to parts of the layout. Tasks illustrated in this walkthrough include: - Creating a Windows Forms project - Arranging Controls in Rows and Columns - Setting Row and Column Properties - Spanning Rows and Columns with a Control - Automatic Handling of Overflows - Inserting Controls by Double-clicking Them in the Toolbox - Inserting a Control by Drawing Its Outline - Reassigning Existing Controls to a Different Parent When you are finished, you will have an understanding of the role played by these important layout features. ## Creating the Project The first step is to create the project and set up the form. #### To create the project 1. Create a Windows Application project called "TableLayoutPanelExample". For more information, see [How to: Create a Windows Forms application project](/visualstudio/ide/step-1-create-a-windows-forms-application-project) . 2. Select the form in the **Windows** **Forms Designer**. ## Arranging Controls in Rows and Columns The control allows you to easily arrange controls into rows and columns. #### To arrange controls in rows and columns using a TableLayoutPanel 1. Drag a control from the **Toolbox** onto your form. Note that, by default, the control has four cells. 2. Drag a control from the **Toolbox** into the control and drop it into one of the cells. Note that the control is created within the cell you selected. 3. Drag three more controls from the **Toolbox** into the control, so that each cell contains a button. 4. Grab the vertical sizing handle between the two columns and move it to the left. Note that the controls in the first column are resized to a smaller width, while size of the controls in the second column is unchanged. 5. Grab the vertical sizing handle between the two columns and move it to the right. Note that the controls in the first column return to their original size, while the controls in the second column are moved to the right. 6. Move the horizontal sizing handle up and down to see the effect on the controls in the panel. ## Positioning Controls Within Cells Using Docking and Anchoring The anchoring behavior of child controls in a differs from the behavior in other container controls. The docking behavior of child controls is the same as other container controls. #### Positioning controls within cells 1. Select the first control. Change the value of its property to . Note that the control expands to fill its cell. 2. Select one of the other controls. Change the value of its property to . Note that it is moved so that its right border is near the right border of the cell. The distance between the borders is the sum of the control's property and the panel's property. 3. Change the value of the control's property to and . Note that the control is sized to the width of the cell, with the and values taken into account. 4. Repeat steps 2 and 3 with the and styles. ## Setting Row and Column Properties You can set individual properties of rows and columns by using the and collections. #### To set row and column properties 1. Select the control in the **Windows Forms Designer**. 2. In the **Properties** windows, open the collection by clicking the ellipsis (![The Ellipsis button (...) in the Properties window of Visual Studio.](./media/visual-studio-ellipsis-button.png)) button next to the **Columns** entry. 3. Select the first column and change the value of its property to . Click **OK** to accept the change. Note that the width of the first column is reduced to fit the control. Also note that the width of the column is not resizable. 4. In the **Properties** window, open the collection and select the first column. Change the value of its property to . Click **OK** to accept the change. Resize the control to a larger width and note that the width of the first column expands. Resize the control to a smaller width and note that the buttons in the first column are sized to fit the cell. Also note that the width of the column is resizable. 5. In the **Properties** window, open the collection and select all the listed columns. Set the value of every property to . Click **OK** to accept the change. Repeat with the collection. 6. Grab one of the corner resizing handles and resize both the width and height of the control. Note that the rows and columns are resized as the control's size changes. Also note that the rows and columns are resizable with the horizontal and vertical sizing handles. ## Spanning Rows and Columns with a Control The control adds several new properties to controls at design time. Two of these properties are `RowSpan` and `ColumnSpan`. You can use these properties to make a control span more than one row or column. #### To span rows and columns with a control 1. Select the control in the first row and first column. 2. In the **Properties** windows, change the value of the `ColumnSpan` property to **2**. Note that the control fills the first column and the second column. Also note than an extra row has been added to accommodate this change. 3. Repeat step 2 for the `RowSpan` property. ## Inserting Controls by Double-clicking Them in the Toolbox You can populate your control by double-clicking controls in the **Toolbox**. #### To insert controls by double-clicking in the Toolbox 1. Drag a control from the **Toolbox** onto your form. 2. Double-click the control icon in the **Toolbox**. Note that a new button control appears in the control's first cell. 3. Double-click several more controls in the **Toolbox**. Note that the new controls appear successively in the control's unoccupied cells. Also note that the control expands to accommodate the new controls if no open cells are available. ## Automatic Handling of Overflows When you are inserting controls into the control, you may run out of empty cells for your new controls. The control handles this situation automatically by increasing the number of cells. #### To observe automatic handling of overflows 1. If there are still empty cells in the control, continue inserting new controls until the control is full. 2. Once the control is full, double-click the icon in the **Toolbox** to insert another control. Note that the control creates new cells to accommodate the new control. Insert a few more controls and observe the resizing behavior. 3. Change the value of the control's property to . Double-click the icon in the **Toolbox** to insert controls until the control is full. Double-click the icon in the **Toolbox** again. Note that you receive an error message from the **Windows Forms Designer** informing you that additional rows and columns cannot be created. ## Inserting a Control by Drawing Its Outline You can insert a control into a control and specify its size by drawing its outline in a cell. #### To insert a Control by drawing its outline 1. Drag a control from the **Toolbox** onto your form. 2. In the **Toolbox**, click the control icon. Do not drag it onto the form. 3. Move the mouse pointer over the control. Note that the pointer changes to a crosshair with the control icon attached. 4. Click and hold the mouse button. 5. Drag the mouse pointer to draw the outline of the control. When you are satisfied with the size, release the mouse button. Note that the control is created in the cell in which you drew the control's outline. ## Multiple Controls Within Cells Are Not Permitted The control can contain only one child control per cell. #### To demonstrate that multiple controls within cells are not permitted - Drag a control from the **Toolbox** into the control and drop it into one of the occupied cells. Note that the control does not allow you to drop the control into the occupied cell. ## Swapping Controls The control enables you to swap the controls occupying two different cells. #### To swap controls - Drag one of the controls from an occupied cell and drop into onto another occupied cell. Note that the two controls are moved from one cell into the other. ## Next Steps You can achieve a complex layout using a combination of layout panels and controls. Suggestions for more exploration include: - Try resizing one of the controls to a larger size and note the effect on the layout. - Paste a selection of multiple controls into the control and note how the controls are inserted. - Layout panels can contain other layout panels. Experiment with dropping a control into the existing control. - Dock the control to the parent form. Resize the form and note the effect on the layout. ## See also - - - [Walkthrough: Arranging Controls on Windows Forms Using a FlowLayoutPanel](walkthrough-arranging-controls-on-windows-forms-using-a-flowlayoutpanel.md) - [Walkthrough: Arranging Controls on Windows Forms Using Snaplines](walkthrough-arranging-controls-on-windows-forms-using-snaplines.md) - [Walkthrough: Creating a Resizable Windows Form for Data Entry](/previous-versions/visualstudio/visual-studio-2010/991eahec(v=vs.100)) - [Walkthrough: Creating a Localizable Windows Form](/previous-versions/visualstudio/visual-studio-2010/7k9fa71y(v=vs.100)) - [Best Practices for the TableLayoutPanel Control](best-practices-for-the-tablelayoutpanel-control.md) - [AutoSize Property Overview](autosize-property-overview.md) - [How to: Dock Controls on Windows Forms](how-to-dock-controls-on-windows-forms.md) - [How to: Anchor Controls on Windows Forms](how-to-anchor-controls-on-windows-forms.md) - [Walkthrough: Laying Out Windows Forms Controls with Padding, Margins, and the AutoSize Property](windows-forms-controls-padding-autosize.md)