given the source as the item you want to capture from the screen. This is the code that I have that saves it to the clipboard.
RenderTargetBitmap bmp = new RenderTargetBitmap((int)source.ActualWidth, (int)source.ActualHeight, 96, 96, PixelFormats.Pbgra32); bmp.Render(source); Clipboard.SetImage(bmp);
source share