How do you programmatically obtain a picture of a .Net control?
|
6
|
|||||||||
|
|
|
There's a method on every control called DrawToBitmap. You don't need to p/invoke to do this.
|
||
|
|
|
|
Here is a link to a codeproject page with a detailed description... |
||
|
|
|
For WinForms controls that support it, there is a method in the System.Windows.Forms.Control class:
This does not work with all controls, however. Third party component vendors have more comprehensive solutions. |
||
|
|
|
|
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
And here it is in C#:
|
||
|
|
|
|
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. |
||
|
|
|
|
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. |
|||
|
