GroupBox
GroupBox is to store other UI controls. When a set of UI controls needs to be handled as a whole, they can be placed in the GroupBox.
- GroupBox
Properties
Property | Description |
---|---|
Background Image | Background images. |
Visible | Visibility settings. |
Clip Child Control | Clipping settings when child controls out of display range. |
Lua Script Example
-- Click the button to switch the visibility of the groupbox
function btn_switch_groupbox_visible(self)
local form = self.ParentForm
form.group_box.Visible = not form.group_box.Visible
end