Beispiel #1
0
 //审核按钮
 private void bt审核_Click(object sender, EventArgs e)
 {
     if (DialogResult.Yes == MessageBox.Show("是否确定完成当前生产指令", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question))
     {
         if (checkform != null)
         {
             checkform.Dispose();
         }
         checkform             = new mySystem.CheckForm(this);
         checkform.FormClosed += new FormClosedEventHandler(checkform_FormClosed);
         checkform.ShowDialog();
     }
     //checkform = new CheckForm(this);
     //checkform.Show();
 }
Beispiel #2
0
 private void bt审核_Click(object sender, EventArgs e)
 {
     checkform = new CheckForm(this);
     checkform.Show();
 }