示例#1
0
 private void scanSurfaceForm_FormClosed(object sender, FormClosedEventArgs e)
 {
     scanSurfaceForm = null;
 }
示例#2
0
 private void Feed()
 {
     PreviewSetting.ShowMatrix = true;
     ScanSurfaceForm frm = new ScanSurfaceForm();
     frm.Show();
 }
示例#3
0
 private void scanSurfaceToolStripMenuItem1_Click(object sender, EventArgs e)
 {
     if (scanSurfaceForm == null)
     {
         scanSurfaceForm = new ScanSurfaceForm();
         scanSurfaceForm.FormClosed += new FormClosedEventHandler(scanSurfaceForm_FormClosed);
         scanSurfaceForm.Show();
     }
     else
     {
         scanSurfaceForm.Show();
     }
 }