码迷,mamicode.com
首页 > Windows程序 > 详细

C# WinForm 技巧:控件截图

时间:2016-04-14 16:03:25      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:

Point screenPoint = 控件.PointToScreen(new Point());
Rectangle rect = new Rectangle(screenPoint, chartCellLine.Size);
Image img = new Bitmap(rect.Width, rect.Height);
Graphics g = Graphics.FromImage(img);
g.CopyFromScreen(rect.X - 1, rect.Y - 1, 0, 0, rect.Size);
img.Save(strPicPath, System.Drawing.Imaging.ImageFormat.Jpeg);

//截图窗体上任意位置的控件

C# WinForm 技巧:控件截图

标签:

原文地址:http://www.cnblogs.com/EminemJK/p/5390975.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!