程序的屏幕截图,但不是整个屏幕

时间:2016-05-25 11:13:11

标签: c# screenshot printscreen

我对编程世界很陌生并且在尝试打印我的程序的打印屏幕时遇到问题(保存到我的桌面作为png)我最接近它的是设法保存一个我整个屏幕的截图。

我使用的编码如下:

Bitmap printscreen = new Bitmap(Screen.PrimaryScreen.Bounds.Height, Screen.PrimaryScreen.Bounds.Width);
Graphics graphics = Graphics.FromImage(printscreen as Image);
graphics.CopyFromScreen(0, 0, 0, 0, printscreen.s);
printscreen.Save(@"C:\Payroll\" + txtName.Text + "_Payroll_" + dateTimePicker1.Text + ".png", ImageFormat.Png);

我无法弄清楚是否有办法做我想做的事。

任何帮助非常感谢。

0 个答案:

没有答案