vote up 1 vote down star

Anyone know of a way to reliably take a snapshot of a WPF window? The PrintWindow api works well for "standard" win32 windows but since WPF uses DirectX, PrintWindow fails to capture an image. I think that one would need to grab the front buffer for the DirectX object associated with the window, but I am not sure how to do that.

Thanks!

flag
Just to clarify - I am looking for a solution that works like PrintWindow - i.e. I should be able to capture the screenshot from another process with just the hwnd for the WPF window. – Mo Flanagan Jan 5 at 16:24

2 Answers

vote up 2 vote down

I'm not sure if this is what you mean, and I'm not sure I'm allowed to link to my blog or not, but is this any use? It basically uses a RenderTargetBitmap to generate a JPG. You can use it to "screenshot" an entire window then print that.

If this is against the rules, someone feel free to delete :)

link|flag
Thanks Steve. This won't work for my case - I will update my question because it wasn't clear. Basically, I want to be able to capture this image with access to just the Hwnd and from another process. – Mo Flanagan Jan 5 at 16:23
Ah, sorry, no idea then. I've done DirecX screenshots from within the app, but never remotely. That code was originally written for remote screenshots, but it used a self hosted WCF service, which I guess is no good for you? – Steven Robbins Jan 5 at 17:38

Your Answer

Get an OpenID
or

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