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 - , rect.Y - , , , rect.Size);
img.Save(strPicPath, System.Drawing.Imaging.ImageFormat.Jpeg); //截图窗体上任意位置的控件
相关文章
- 07-23Winform TreeView控件技巧
- 07-23winform 指定控件区域截图(比如截取窗体中的某个Panel区域)
- 07-23Winform TreeView控件技巧
- 07-23Winform界面开发技巧分享:如何突出显示WinForms网格控件行
- 07-23C# WinForm中添加用户控件
- 07-23C# WinForm窗体控件Panel修改边框颜色以及边框宽度方法
- 07-23通过C# WinForm控件创建的WPF WIndow窗口控件无法输入的问题
- 07-23C# WinForm 跨线程访问控件
- 07-23c# winform 根据窗体自动调整控件
- 07-23c# Winform 继承窗体 无法拖动修改控件大小