我有这些代码行可以截取屏幕截图,并且"获取"它:
SendKeys.Send("{PRTSC}");
Image img = Clipboard.GetImage();
initScreenShot = new Bitmap(img);
但有时我收到错误消息:
行未处理的类型' System.NullReferenceException' 发生在System.Drawing.dll
中
initScreenShot = new Bitmap(img);
上的,大约有25%的时间我运行代码。那是为什么?