GroupBoxRenderer::DrawGroupBox Method (Graphics^, Rectangle, String^, Font^, GroupBoxState)
Draws a group box control in the specified state and bounds, with the specified text and font.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: static void DrawGroupBox( Graphics^ g, Rectangle bounds, String^ groupBoxText, Font^ font, GroupBoxState state )
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.
- groupBoxText
-
Type:
System::String^
The String to draw with the group box.
- font
-
Type:
System.Drawing::Font^
The Font to apply to groupBoxText.
- 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, String^, Font^, 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