Esempio n. 1
0
        private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            about aboutBox = new about();

            aboutBox.ShowDialog();
            aboutBox = null;
        }
Esempio n. 2
0
        private void button2_Click_1(object sender, EventArgs e)
        {
            //new about().Show();
            Form f2 = new about(); //参数得看 Form2 的构造函数怎么写的了

            f2.ShowDialog();
            //string registData = this.GetRegistData(this.registData);   //选择steam路径
            //OpenFileDialog dialog = new OpenFileDialog();
            //dialog.ShowDialog();
            //registData = dialog.FileName;
            //this.textBox1.Text = registData;
        }
Esempio n. 3
0
        private void aProposToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form f = new about();

            f.ShowDialog();
        }
Esempio n. 4
0
        private void button4_Click(object sender, EventArgs e)
        {
            about f = new about();

            f.Show();
        }
Esempio n. 5
0
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     about aboutBox = new about();
     aboutBox.ShowDialog();
     aboutBox = null;
 }