vote up 9 vote down star
6

How do you programmatically obtain a picture of a .Net control?

flag
This is a bit too vague, try to explain what are you trying to do. No wander the down votes. – Pop Catalin Nov 5 '08 at 18:22
No wander? I think the meaning is perfectly clear. He wants to get a bitmap representation of a control. – Will Nov 5 '08 at 18:24
I agree with Will. It's a simple and clear question. – Bogdan Nov 5 '08 at 18:33
I hope you don't mind that I reworded the question a bit. It's a good question and a good answer by Will. – raven Nov 5 '08 at 18:59

6 Answers

vote up 20 vote down check

There's a method on every control called DrawToBitmap. You don't need to p/invoke to do this.

Control c = new TextBox();
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(c.Width, c.Height);
c.DrawToBitmap(bmp, c.ClientRectangle);
link|flag
vote up 3 vote down

Here is a link to a codeproject page with a detailed description...

link|flag
There is absolutely no need to p/invoke to do this. – Will Nov 5 '08 at 18:30
vote up 2 vote down

For WinForms controls that support it, there is a method in the System.Windows.Forms.Control class:

public void DrawToBitmap(Bitmap bitmap, Rectangle targetBounds);

This does not work with all controls, however. Third party component vendors have more comprehensive solutions.

link|flag
vote up 4 vote down

You can get a picture of a .NET control programmatically pretty easily using the DrawToBitmap method of the Control class starting in .NET 2.0

Here is a sample in VB

    Dim formImage As New Bitmap("C:\File.bmp")
    Me.DrawToBitmap(formImage, Me.Bounds)

And here it is in C#:

 Bitmap formImage = New Bitmap("C:\File.bmp")
 this.DrawToBitmap(formImage, Me.Bounds)
link|flag
vote up 0 vote down

if it's not on the control you're trying to do, you can usually cast it to the base Control class and call the DrawToBitmap method there.

link|flag
vote up 3 vote down

Control.DrawToBitmap will let you draw most controls to a bitmap. This does not work with RichTextBox and some others. If you want to capture these, or a control that has one of them, then you need to do PInvoke like described in the code project article http://www.codeproject.com/KB/graphics/imagecapture.aspx, suggested by Jeff. Take care that some of these methods will capture whatever is on the screen, so if you have another window covering your control you will get that instead.

link|flag
For WebBrowser, I just cast to Control and call it there. I've done it and know it works. Not sure about RichTextBox – Nick Nov 5 '08 at 18:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.