GroupBoxes and Panels
GroupBoxes and Panels arrange controls on a GUI. GroupBoxes and Panels are typically used to group several controls of similar functionality or several controls that are related in a GUI. All of the controls in a GroupBox or Panel move together when the GroupBox or Panel is moved.
The primary difference between these two controls is that GroupBoxes can display a caption (i.e., text) and do not include scrollbars, whereas Panels can include scrollbars and do not include a caption. GroupBoxes have thin borders by default; Panels can be set so that they also have borders by changing their BorderStyle property. Figures 13.2113.22 list the common properties of GroupBoxes and Panels, respectively.
GroupBox properties |
Description |
---|---|
Controls |
The set of controls that the GroupBox contains. |
Text |
Specifies the caption text displayed at the top of the GroupBox. |
Panel properties |
Description |
---|---|
AutoScroll |
Indicates whether scrollbars appear when the Panel is too small to display all of its controls. The default value is false. |
BorderStyle |
Sets the border of the Panel. The default value is None; other options are Fixed3D and FixedSingle. |
Controls |
The set of controls that the Panel contains. |
|
To create a GroupBox, drag its icon from the Toolbox onto a Form. Then, drag new controls from the Toolbox into the GroupBox. These controls are added to the GroupBox's Controls property and become part of the GroupBox. The GroupBox's Text property specifies the caption.
To create a Panel, drag its icon from the Toolbox onto the Form. You can then add controls directly to the Panel by dragging them from the Toolbox onto the Panel. To enable the scrollbars, set the Panel's AutoScroll property to TRue. If the Panel is resized and cannot display all of its controls, scrollbars appear (Fig. 13.23). The scrollbars can be used to view all the controls in the Panelboth at design time and at execution time. In Fig. 13.23, we set the Panel's BorderStyle property to FixedSingle so that you can see the Panel in the Form.
Figure 13.23. Creating a Panel with scrollbars.
|
The program in Fig. 13.24 uses a GroupBox and a Panel to arrange Buttons. When these Buttons are clicked, their event handlers change the text on a Label.
Figure 13.24. Using GroupBoxes and Panels to arrange Buttons.
(This item is displayed on page 617 in the print version)
1 // Fig. 13.24: GroupboxPanelExampleForm.cs
2 // Using GroupBoxes and Panels to hold Buttons.
3 using System;
4 using System.Windows.Forms;
5
6 // Form that displays a GroupBox and a Panel
7 public partial class GroupBoxPanelExampleForm : Form
8 {
9 // default constructor
10 public GroupBoxPanelExampleForm()
11 {
12 InitializeComponent();
13 } // end constructor
14
15 // event handler for Hi Button
16 private void hiButton_Click( object sender, EventArgs e )
17 {
18 messageLabel.Text = "Hi pressed"; // change text in Label
19 } // end method hiButton_Click
20
21 // event handler for Bye Button
22 private void byeButton_Click( object sender, EventArgs e )
23 {
24 messageLabel.Text = "Bye pressed"; // change text in Label
25 } // end method byeButton_Click
26
27 // event handler for Far Left Button
28 private void leftButton_Click( object sender, EventArgs e )
29 {
30 messageLabel.Text = "Far left pressed"; // change text in Label
31 } // end method leftButton_Click
32
33 // event handler for Far Right Button
34 private void rightButton_Click( object sender, EventArgs e )
35 {
36 messageLabel.Text = "Far right pressed"; // change text in Label
37 } // end method rightButton_Click
38 } // end class GroupBoxPanelExampleForm
|
The GroupBox (named mainGroupBox) has two ButtonshiButton (which displays the text Hi) and byeButton (which displays the text Bye). The Panel (named mainPanel) also has two Buttons, leftButton (which displays the text Far Left) and rightButton (which displays the text Far Right). The mainPanel has its AutoScroll property set to true, allowing scrollbars to appear when the contents of the Panel require more space than the Panel's visible area. The Label (named messageLabel) is initially blank. To add controls to mainGroupBox or mainPanel, Visual Studio calls method Add of each container's Controls property. This code is placed in the partial class located in the file GroupBoxPanelExampleForm.Designer.cs.
The event handlers for the four Buttons are located in lines 1637. We added a line in each event handler (lines 18, 24, 30 and 36) to change the text of messageLabel to indicate which Button the user pressed.