示例#1
0
        private void button8_Click(object sender, EventArgs e)
        {
            Form11 f11 = new Form11();

            f11.ShowDialog();
            this.Close();
        }
示例#2
0
        private void 修改信息ToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            this.Visible = false;
            Form11 f4 = new Form11();

            f4.ShowDialog();
            this.Visible = true;
        }
示例#3
0
        private void button8_Click(object sender, EventArgs e)
        {
            s = dataGridView1[2, dataGridView1.CurrentRow.Index].Value.ToString();
            Form11 f11 = new Form11();

            f11.textBox1.Text = s;
            f11.ShowDialog();
        }
示例#4
0
文件: Form2.cs 项目: chinazxn/MyEIMS
 private void pictureBox1_Click(object sender, EventArgs e)
 {
     Form nfm = new Form11();
     this.Hide();
     if (nfm.ShowDialog() == DialogResult.Cancel)
     {
         this.Show();
     }
 }