C# WinForm控件及其子控件转成图片(支持带滚动条的长截图)

概述(Overview)

参考了网上的分享,感觉都不太理想:1.一个控件内如果包含多个子控件时没有考虑顺序问题;2.超出控件可显示区域时不能长截图,有滚动条会多余截取了滚动条。这个随笔旨在解决这个问题,实现带滚动条时可以长截图,并且给出了在多个子控件的情况下如何控制截图顺序的代码。有用可以点个赞。引用本文章请注明出处,谢谢。

(Referring to the Share on the Internet, I feel that it is not ideal: 1. If there are multiple sub-controls in a control, the order is not considered; 2. When the display area of the control is exceeded, the screenshot cannot be long, and the scroll bar will be redundantly intercepted. This essay aims to solve this problem by implementing long screenshots with scrollbars, and gives code on how to control the order of screenshots in the case of multiple child controls. If it's useful, you can like it. Please indicate the source for citing this article, thank you.)

复制代码
 1         /// <summary>
 2         /// 绘制整个控件以及子控件
 3         /// </summary>
 4         /// <param name="ctrl">窗口/控件</param>
 5         /// <param name="bitmap">bit图片</param>
 6         /// <returns></returns>
 7         private Bitmap DrawToBitmap(Control ctrl, Bitmap bitmap = null)
 8         {
 9             //获取整个界面的大小
10             var w = ctrl.DisplayRectangle.Width;
11             var h = ctrl.DisplayRectangle.Height;
12 
13             //长截图
14             if (bitmap == null)
15             {
16                 bitmap = ctrl.BackgroundImage == null ? new Bitmap(w, h) : new Bitmap(ctrl.BackgroundImage);
17             }
18 
19             if (ctrl.HasChildren)
20             {
21                 //绘制子控件内容(逆序处理:图层从下开始往上叠取)
22                 for (int i = ctrl.Controls.Count - 1; i >= 0; i--)
23                 {
24                     var control = ctrl.Controls[i];
25                     //重新计算图片在bitmap上的位置
26                     var newLocation = new Point(control.Location.X - ctrl.DisplayRectangle.X, control.Location.Y - ctrl.DisplayRectangle.Y);
27 
28                     using (Bitmap temp = new Bitmap(control.Width, control.Height))
29                     using (Graphics g = Graphics.FromImage(bitmap))
30                     {
31                         control.DrawToBitmap(temp, new Rectangle(new Point(0, 0), control.Size));
32                         g.DrawImage(temp, new Rectangle(newLocation, control.Size));
33                     }
34                     DrawToBitmap(control, bitmap);
35                 }
36             }
37 
38             return bitmap;
39         }

Code

引用(Reference)

相关推荐
IT技术分享社区5 小时前
C#实战:使用腾讯云识别服务轻松提取火车票信息
开发语言·c#·云计算·腾讯云·共识算法
△曉風殘月〆12 小时前
WPF MVVM入门系列教程(二、依赖属性)
c#·wpf·mvvm
逐·風14 小时前
unity关于自定义渲染、内存管理、性能调优、复杂物理模拟、并行计算以及插件开发
前端·unity·c#
m0_6569747417 小时前
C#中的集合类及其使用
开发语言·c#
九鼎科技-Leo17 小时前
了解 .NET 运行时与 .NET 框架:基础概念与相互关系
windows·c#·.net
九鼎科技-Leo19 小时前
什么是 ASP.NET Core?与 ASP.NET MVC 有什么区别?
windows·后端·c#·asp.net·mvc·.net
.net开发19 小时前
WPF怎么通过RestSharp向后端发请求
前端·c#·.net·wpf
小乖兽技术19 小时前
C#与C++交互开发系列(二十):跨进程通信之共享内存(Shared Memory)
c++·c#·交互·ipc
幼儿园园霸柒柒20 小时前
第七章: 7.3求一个3*3的整型矩阵对角线元素之和
c语言·c++·算法·矩阵·c#·1024程序员节
平凡シンプル1 天前
C# EF 使用
c#