Files
sbox-public/game/addons/base/code/UI/ControlSheet/ControlSheetGroup.cs
s&box team 71f266059a Open source release
This commit imports the C# engine code and game files, excluding C++ source code.

[Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
2025-11-24 09:05:18 +00:00

19 lines
389 B
C#

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