Example #1
0
        private void button2_Click(object sender, EventArgs e)
        {
            jbcsForm jbcs = jbcsForm.Create();

            jbcs.Show();
            jbcs.Focus();
        }
Example #2
0
        private void zjbutton_Click(object sender, EventArgs e)
        {
            jbcsForm jbcs = jbcsForm.Create();

            //jbcs.Loadevent += loadevent;
            jbcs.Show();
            jbcs.Focus();
        }
Example #3
0
 public static jbcsForm Create()
 {
     if (jbcs == null)
     {
         jbcs = new jbcsForm();
     }
     return(jbcs);
 }
Example #4
0
        private void 基本参数ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (!FilterClass.jbcs())
            {
                MessageBox.Show("无权操作!");
                return;
            }
            jbcsForm jbcs = jbcsForm.Create();

            jbcs.Show();
            jbcs.Focus();
        }
Example #5
0
 private void jbcsForm_FormClosed(object sender, FormClosedEventArgs e)
 {
     jbcs = null;
     //Loadevent();
 }