Beispiel #1
0
        private void pictureBox2_Click(object sender, EventArgs e)
        {
            this.Hide();
            NewsForm2 abc = new NewsForm2("abc", 0);

            abc.ShowDialog();
        }
Beispiel #2
0
        private void pictureBox4_Click(object sender, EventArgs e)
        {
            this.Hide();
            NewsForm2 mtv = new NewsForm2("mtv", 0);

            mtv.ShowDialog();
        }
Beispiel #3
0
        private void pictureBox3_Click(object sender, EventArgs e)
        {
            this.Hide();
            NewsForm2 nyn = new NewsForm2("nyn", 0);

            nyn.ShowDialog();
        }
Beispiel #4
0
 private void button6_Click(object sender, EventArgs e)
 {
     this.Hide();
     if (this.appNum == 0)
     {
         NewsForm2 con = new NewsForm2(this.appName, 5);
         con.ShowDialog();
     }
     else
     {
         NewsForm2 con = new NewsForm2(this.appName, 0);
         con.ShowDialog();
     }
 }