我的 screencapturejob.rectangle 导致异常(ArgumentOutOfRange)。
这是我的代码:
private void RecButton_Checked(object sender, RoutedEventArgs e)
{
System.Drawing.Size monitorSize = SystemInformation.PrimaryMonitorSize;
Rectangle capRect = new Rectangle(0, 0,monitorSize.Height, monitorSize.Width);
job.CaptureRectangle = capRect; -------------
// job.CaptureRectangle = (0,0,capRect.Width,capRect.Height);
job.OutputPath = @"C:\output\ScreenCap";
job.Start();
}
我免费使用表达式编码器专业版。它工作正常,但在这种情况下我们得到了例外,谁能告诉我我做错了什么。