回答編集履歴
1
注釈追加
answer
CHANGED
@@ -25,9 +25,9 @@
|
|
25
25
|
/// ビットマップが完成するのを待つ
|
26
26
|
while (!System.IO.File.Exists(_tempBmpFileName))
|
27
27
|
{
|
28
|
-
System.Threading.Thread.Sleep(100);
|
28
|
+
System.Threading.Thread.Sleep(100); //これは単なる「状態ポーリング間隔」である
|
29
29
|
}
|
30
|
-
System.Threading.Thread.Sleep(100); //←追加
|
30
|
+
System.Threading.Thread.Sleep(100); //←ウェイト用のSleepはここに追加する
|
31
31
|
_pictureBox.Image = CreateImage(_tempBmpFileName);
|
32
32
|
```
|
33
33
|
|