The GroupBox Control in C#.Net
The GroupBox control is a container control that is used to place Windows Forms child controls in a group. That is the purpose of a GroupBox is to define user interfaces where we can categories related controls in a group.
How to use GroupBox Control
Drag and drop GroupBox control from the toolbox on the window Form. When you drag and drop the group box, it has a border by default, and its caption is set to the name of the control. You can change its caption.
You can insert other control inside GroupBox control.
GroupBox Properties
AutoSize: Gets or sets a value that indicates whether the GroupBox resizes based on its contents.
BackColor: Gets or sets the background color for the control.
ForeColor: ForeColor of all control inside GroupBox can be changed at a time.
Example:
private void GroupBoLoad(object sender, EventArgs e)
{
//Change Fore color of all control in side GroupBox
groupBox1.ForeColor= Color.RoyalBlue;
}
The Fore color of all control inside GroupBox will be changed when the application run.
Anonymous User
01-Mar-2019Thank You for sharing it.
Samuel Fernandes
10-Aug-2017Thanks for sharing informative post.