using System.Windows.Forms; using System.Drawing; using System.ComponentModel; namespace FastReport.Dialog { /// /// Represents a Windows control that displays a frame around a group of controls with an optional caption. /// Wraps the control. /// public class GroupBoxControl : ParentControl { private GroupBox groupBox; #region Public Properties /// /// Gets an internal GroupBox. /// [Browsable(false)] public GroupBox GroupBox { get { return groupBox; } } #endregion /// /// Initializes a new instance of the GroupBoxControl class with default settings. /// public GroupBoxControl() { groupBox = new GroupBox(); Control = groupBox; } } }