Click or drag to resize

DynamicLayoutAddSeparateRow Method (Control)

Adds a separate horizontal row of items in a new vertical section

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public DynamicRow AddSeparateRow(
	params Control[] controls
)

Parameters

controls
Type: Eto.FormsControl
Controls.

Return Value

Type: DynamicRow
The separate row.
Remarks
This performs the same as the following, but in a single line:
layout.BeginVertical();
layout.BeginHorizontal();
layout.Add(control1);
layout.Add(control2);
...
layout.EndHorizontal();
layout.EndVertical();
See Also