namespace Sandbox.UI; /// /// A group for ControlSheet, consists of a title and a body containing properties. /// public class ControlSheetGroup : Panel { public Panel Header { get; set; } public Panel Body { get; set; } public ControlSheetGroup() { AddClass( "controlgroup" ); Header = AddChild( "header" ); Body = AddChild( "body" ); } }