Skip to content

FlowLayoutPanel

ProGraMajster edited this page Mar 28, 2026 · 1 revision

FlowLayoutPanel

← Back to Control Inventory

Summary

Represents a control that positions its children in a sequential layout.

Example

var layout = new FlowLayoutPanel();
layout.Controls.Add(new Button { Text = "One" });
layout.Controls.Add(new Button { Text = "Two" });

Documented Properties

Name Summary
FlowDirection Gets or sets a value indicating which direction the control's children should be positioned.
LayoutEngine No XML summary yet.
WrapContents Gets or sets a value indicating if the control's children should wrap to new lines if more space is needed.

Documented Methods

Name Summary
#ctor Initializes a new instance of the FlowLayoutPanel class.
GetFlowBreak Gets a value indicating if a flow break has been set for the specified control.
SetFlowBreak Sets a flow break for the specified control.

Documented Events

No documented members yet.

Notes

  • This page was generated from the public XML documentation of ModernFormsNext.
  • Base members inherited from Control, ScrollableControl, WindowBase, or other parent types may not all be repeated here.

ModernFormsNext

Clone this wiki locally