示例#1
0
        private void InternetGameButton_Click(object sender, EventArgs e)
        {
            InternetProfile internetProfile = new InternetProfile();

            internetProfile.Show();
            this.Hide();
        }
示例#2
0
 public Result(InternetProfile internetProfile, string login2, Person person, bool isAccuse1, bool isAccuse2)
 {
     this.InternetProfile = internetProfile;
     this.person1         = person;
     this.isAccuse1       = isAccuse1;
     this.isAccuse2       = isAccuse2;
     InitializeComponent();
     judge(person.name, login2, isAccuse1, isAccuse2);
 }
示例#3
0
 public InternetGame(InternetProfile InternetProfile, Person person, IDataBase dataBase, long id)
 {
     this.InternetProfile = InternetProfile;
     this.person          = person;
     this.dataBase        = dataBase;
     this.id = id;
     time    = 30;
     InitializeComponent();
     timer1.Start();
 }