Group is a border-like container with optional corner labels (top-left/top-right/bottom-left/bottom-right).
new Group("Settings")
.Content(new VStack(
new CheckBox("Enabled"),
new TextBox("Name")
));
You can override the group glyphs and border colors on a per-group basis using GroupStyle:
using XenoAtom.Terminal.UI.Styling;
new Group("Rounded")
.Style(GroupStyle.Rounded)
.Content("Content");
HorizontalAlignment = Align.Start, VerticalAlignment = Align.Start