私は解決策をいくつか検索しましたが、解決策を示している人は一人もいません...誰かがそれが発生する理由とそれを解決する方法を(簡単な方法で)説明していただければ幸いです:)
いつも同じ場所で発生します...プログラムを開始してから数分後。
private static Bitmap bmpScreenShot;
private static Graphics gfxScreenShot;
...
...
bmpScreenShot = new Bitmap(Screen.PrimaryScreen.Bounds.Width,
Screen.PrimaryScreen.Bounds.Height, PixelFormat.Format32bppArgb);
gfxScreenShot = Graphics.FromImage(bmpScreenShot);
gfxScreenShot.CopyFromScreen(Screen.PrimaryScreen.Bounds.X,
Screen.PrimaryScreen.Bounds.Y, 0, 0, Screen.PrimaryScreen.Bounds.Size,
CopyPixelOperation.SourceCopy); // <-- Occurs here a while after ive started the application
これが発生する前に、数回(たとえば、40〜80回)実行されます。
Win32Exeptionが処理されませんでした:操作は正常に完了しました