GroupBoxRenderer::DrawGroupBox Method (Graphics^, Rectangle, GroupBoxState)
Draws a group box control in the specified state and bounds.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- g
-
Type:
System.Drawing::Graphics^
The Graphics used to draw the group box.
- bounds
-
Type:
System.Drawing::Rectangle
The Rectangle that specifies the bounds of the group box.
- state
-
Type:
System.Windows.Forms.VisualStyles::GroupBoxState
One of the GroupBoxState values that specifies the visual state of the group box.
If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the group box with the current visual style. Otherwise, this method will draw the group box with the classic Windows style.
The following code example uses the DrawGroupBox(Graphics^, Rectangle, GroupBoxState) method in a custom control's OnPaint method to draw a group box with a double border. This code example is part of a larger example provided for the GroupBoxRenderer class.
// Draw the group box in the current state.
protected:
virtual void OnPaint(PaintEventArgs^ e) override
{
__super::OnPaint(e);
GroupBoxRenderer::DrawGroupBox(e->Graphics, ClientRectangle,
this->Text, this->Font, state);
// Draw an additional inner border if visual styles are enabled.
if (Application::RenderWithVisualStyles)
{
GroupBoxRenderer::DrawGroupBox(e->Graphics, innerRectangle,
state);
}
}
Available since 2.0