New to Telerik UI for WinForms? Start a free 30-day trial
StackLayoutPanel
Updated over 6 months ago
StackLayoutPanel is a panel that handles the layout of multiple elements in a vertical or horizontal row. The following example demonstrate how you can easily emply this layout to work for you.
StackLayoutPanel example
With this example we create a RadElement which contains a StackLayoutPanel. The StackLayoutPanelinstance is filled with several RadTextBoxElements ordered vertically. The RadElement that we create can be hosted in a RadControl as described here.

Using StackLayoutPanel
C#
public class MyStackLayoutPanelElement : RadElement
{
protected override void CreateChildElements()
{
StackLayoutPanel layoutPanel = new StackLayoutPanel();
layoutPanel.Orientation = Orientation.Vertical;
for (int i = 0; i < 10; i++)
{
layoutPanel.Children.Add(GetTextBoxElement(i));
}
this.Children.Add(layoutPanel);
base.CreateChildElements();
}
private RadTextBoxElement GetTextBoxElement(int count)
{
RadTextBoxElement result = new RadTextBoxElement();
result.ShowBorder = true;
result.Text = "Element" + count.ToString();
result.Class = "MyTextBoxElement";
result.StretchHorizontally = false;
result.StretchVertically = false;
result.MinSize = new Size(100, 17);
return result;
}
}