摘要: 方法一:Rectangle bounds = Screen.GetBounds(Point.Empty); using (Bitmap bitmap = new Bitmap(bounds.Width, bounds.Height)) { using (Graphics g = Graphics.FromImage(bitmap)) { g.CopyFromScreen(Point.Empty, Point.Empty, bounds.Size); ... 阅读全文
posted @ 2013-08-30 08:43 louiskoo 阅读(5594) 评论(0) 推荐(1) 编辑