ButtonRenderer::DrawButton Method (Graphics^, Rectangle, String^, Font^, Image^, Rectangle, Boolean, PushButtonState)

 

Draws a button control in the specified state and bounds, with the specified text and image, and with an optional focus rectangle.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
static void DrawButton(
	Graphics^ g,
	Rectangle bounds,
	String^ buttonText,
	Font^ font,
	Image^ image,
	Rectangle imageBounds,
	bool focused,
	PushButtonState state
)

Parameters

g
Type: System.Drawing::Graphics^

The Graphics used to draw the button.

bounds
Type: System.Drawing::Rectangle

The Rectangle that specifies the bounds of the button.

buttonText
Type: System::String^

The String to draw on the button.

font
Type: System.Drawing::Font^

The Font to apply to buttonText.

image
Type: System.Drawing::Image^

The Image to draw on the button.

imageBounds
Type: System.Drawing::Rectangle

The Rectangle that represents the dimensions of image.

focused
Type: System::Boolean

true to draw a focus rectangle on the button; otherwise, false.

state
Type: System.Windows.Forms.VisualStyles::PushButtonState

One of the PushButtonState values that specifies the visual state of the button.

If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the button with the current visual style. Otherwise, it will draw the button with the classic Windows style.

.NET Framework
Available since 2.0
Return to top
Show: