tags:

views:

39

answers:

2

Hi,

I'm working on a c# wpf app in which I want a grid or rectangle to show the contents of a window in my application. It should be like a monitor which constantly shows what happens in the other window (video is being played in in it).

Is there a good way to capture the screen or some other option?

Thanks

+1  A: 

You can take a look at the VisualBrush class - that might be able to handle what you want. I don't know if it can handle cloning video but this example shows it copying a static part of the screen.

Marc
Spot on, including video ! :D
internetmw
A: 

I believe this kind of question has already been answer here: http://stackoverflow.com/questions/891345/get-a-screenshot-of-a-specific-application

Simon Mourier