Malfist
Malfist

Reputation: 31815

How can I generate a Bitmap from a winform control?

How can I generate a bitmap of a control on a winform using C#?

Upvotes: 5

Views: 4572

Answers (3)

user6212
user6212

Reputation:

Use Control.DrawToBitmap MSDN

Upvotes: 0

Daniel Brückner
Daniel Brückner

Reputation: 59705

You might try Control.DrawToBitmap().

Upvotes: 11

Igor Brejc
Igor Brejc

Reputation: 19004

Maybe this can help: http://www.syncfusion.com/FAQ/windowsforms/faq_c3c.aspx#q870q

Upvotes: 1

Related Questions