1.具体是应用了Nuget包 ScreenCapturer
2.编写相关核心代码,实现截取电脑部分区域图片
ScreenCapturer.ScreenCapturerTool screenCapturer = new();
if (screenCapturer.ShowDialog() == DialogResult.OK)
{
Bitmap bmp = (Bitmap)screenCapturer.Image;
pictureBox1.BackgroundImage = bmp;
}
3.效果如下:
Demo下载使用C#进行屏幕截图(screenCapturer)资源-CSDN文库