private void ShowSnapshot(Bitmap snapshot) { if (InvokeRequired) { Invoke(new Action <Bitmap>(ShowSnapshot), snapshot); } else { if (snapshotForm == null) { snapshotForm = new SnapshotForm( ); snapshotForm.FormClosed += new FormClosedEventHandler(snapshotForm_FormClosed); snapshotForm.Show( ); } snapshotForm.SetImage(snapshot); } }
private void ShowSnapshot(Bitmap snapshot) { if (checkBox_calibrated.Checked == false) { if (InvokeRequired) { Invoke(new Action <Bitmap>(ShowSnapshot), snapshot); } else { if (snapshotForm == null) { snapshotForm = new SnapshotForm(); snapshotForm.FormClosed += new FormClosedEventHandler(snapshotForm_FormClosed); snapshotForm.Show(); } snapshotForm.SetImage(snapshot); } } else // rozpoznajemy { if (InvokeRequired) { Invoke(new Action <Bitmap>(ShowSnapshot), snapshot); } else { if (snapshotForm == null) { recognizeform = new RecognizeForm(); recognizeform.FormClosed += new FormClosedEventHandler(recognizeform_FormClosed); recognizeform.Show(); } recognizeform.SetImage(snapshot); } } }