Exemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            Form2 f = new Form2();

            f.Hide();
            f.Show();
        }
Exemplo n.º 2
0
        private void button3_Click(object sender, EventArgs e)
        {
            Form2 f2 = new Form2();

            f2.Hide();
            f2.Show();
        }
Exemplo n.º 3
0
        private void додатиАвтоToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form2 f = new Form2();

            f.Hide();
            f.Show();
        }
Exemplo n.º 4
0
        private void button2_Click(object sender, EventArgs e)
        {
            this.Hide();
            Form2 n = new Form2();

            n.Show();
            n.Hide();
        }
Exemplo n.º 5
0
        private void button4_Click_1(object sender, EventArgs e)
        {
            Form1 f = new Form1();

            f.Show();
            Form2 f1 = new Form2();

            f1.Hide();
        }
Exemplo n.º 6
0
 private void button3_CheckedChanged(object sender, EventArgs e)
 {
     if (button3.Checked)
     {
         ReadMe.Show();
     }
     else
     {
         ReadMe.Hide();
     }
 }
Exemplo n.º 7
0
 private void btn_study_Click(object sender, EventArgs e)
 {
     if (study_form != null)
     {
         study_form.Hide();
     }
     study_form = new Form2();
     study_form.StartPosition = FormStartPosition.Manual;
     study_form.Location      = new Point(this.Location.X + this.Size.Width, this.Location.Y);
     study_form.Show();
 }