--- title: "FlowLayoutPanel Control Overview" ms.date: "03/30/2017" f1_keywords: - "FlowLayoutPanel" helpviewer_keywords: - "forms [Windows Forms], dynamic layout" - "layout [Windows Forms], dynamic" - "Windows Forms, dynamic layout" - "FlowLayoutPanel control [Windows Forms], about FlowLayoutPanel control" ms.assetid: 3883e024-f5a0-456d-9c27-b4dfa1cc9045 --- # FlowLayoutPanel Control Overview The control arranges its contents in a horizontal or vertical flow direction. You can wrap the control's contents from one row to the next, or from one column to the next. Alternately, you can clip instead of wrap its contents. You can specify the flow direction by setting the value of the property. The control correctly reverses its flow direction in Right-to-Left (RTL) layouts. You can also specify whether the control's contents are wrapped or clipped by setting the value of the property. The control automatically sizes to its contents when you set the property to `true`. It also provides a **FlowBreak** property to its child controls. Setting the value of the FlowBreak property to `true` causes the control to stop laying out controls in the current flow direction and wrap to the next row or column. Any Windows Forms control can be a child of the control, including other instances of . With this capability, you can construct sophisticated layouts that adapt to your form's dimensions at run time. Also see [Walkthrough: Arranging Controls on Windows Forms Using a FlowLayoutPanel](walkthrough-arranging-controls-on-windows-forms-using-a-flowlayoutpanel.md). ## See also - - - [FlowLayoutPanel Control](flowlayoutpanel-control-windows-forms.md)