| c# Programming Glossary: capturewindowSaving a screenshot of a window using C#, WPF, and DWM http://stackoverflow.com/questions/1858122/saving-a-screenshot-of-a-window-using-c-wpf-and-dwm  consistent results The Utilities class. Call Utilities.CaptureWindow Control.Handle to capture a specific control public static class.. class Utilities public static Image CaptureScreen  return CaptureWindow User32.GetDesktopWindow  public static Image CaptureWindow IntPtr.. CaptureWindow User32.GetDesktopWindow  public static Image CaptureWindow IntPtr handle  IntPtr hdcSrc User32.GetWindowDC handle RECT.. 
 WebBrowser.DrawToBitmap() or other methods? http://stackoverflow.com/questions/2434156/webbrowser-drawtobitmap-or-other-methods  consistent results The Utilities class. Call Utilities.CaptureWindow Control.Handle to capture a specific control public static class.. class Utilities public static Image CaptureScreen  return CaptureWindow User32.GetDesktopWindow  public static Image CaptureWindow IntPtr.. CaptureWindow User32.GetDesktopWindow  public static Image CaptureWindow IntPtr handle  IntPtr hdcSrc User32.GetWindowDC handle RECT.. 
 How to take a screenshot of a Full Size window in C# http://stackoverflow.com/questions/4176340/how-to-take-a-screenshot-of-a-full-size-window-in-c-sharp  the desktop returns private Image CaptureDesktop  return CaptureWindow User32.GetDesktopWindow  public Image CaptureAciveWindow  return..  public Image CaptureAciveWindow  return CaptureWindow User32.GetForegroundWindow  summary An Internal method that.. of the active application window returns private Image CaptureWindow IntPtr handle  get te hDC of the target window IntPtr hdcSrc.. 
 |