All Tags »
Screenshot (
RSS)
Sorry, but there are no more tags available to filter with.
-
Hi, heres a code snippet, that creates a bitmap of a control (which could be a windows form) public Bitmap CreateScreenshot(Control control) { int width = control.Width; int height = control.Height; Bitmap bmp = new Bitmap(width, heigth); control.DrawToBitmap(bmp, Rectangle.FromLTRB(0, 0, width, heigth...
Page 1 of 1 (1 items)