ControlPaint::DrawBorder Method (Graphics^, Rectangle, Color, ButtonBorderStyle)
.NET Framework (current version)
Draws a border with the specified style and color, on the specified graphics surface, and within the specified bounds on a button-style control.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: static void DrawBorder( Graphics^ graphics, Rectangle bounds, Color color, ButtonBorderStyle style )
Parameters
- graphics
-
Type:
System.Drawing::Graphics^
The Graphics to draw on.
- bounds
-
Type:
System.Drawing::Rectangle
The Rectangle that represents the dimensions of the border.
- color
-
Type:
System.Drawing::Color
The Color of the border.
- style
-
Type:
System.Windows.Forms::ButtonBorderStyle
One of the ButtonBorderStyle values that specifies the style of the border.
The following code example demonstrates the use of one of the DrawBorder3D methods. To run this example, paste the following code in a form that imports the System.Windows.Forms and System.Drawing namespaces. Ensure the form's Paint event is associated with the event handler in this example.
// Handle the Form's Paint event to draw a 3D three-dimensional // raised border just inside the border of the frame. void Form1_Paint( Object^ /*sender*/, PaintEventArgs^ e ) { Rectangle borderRectangle = this->ClientRectangle; borderRectangle.Inflate( -10, -10 ); ControlPaint::DrawBorder3D( e->Graphics, borderRectangle, Border3DStyle::Raised ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: