예제 #1
0
 public LearnSkill(String username, String college, SkAdventure s)
 {
     this.username = username;
     this.college  = college;
     this.sda      = s;
     InitializeComponent();
 }
예제 #2
0
        private void btn_Sure_Click(object sender, EventArgs e)
        {
            string username = this.textBox_Username.Text;
            string college  = this.comboBox_College.Text;
            Form   f        = new SkAdventure(username, college);

            f.Show();
            this.Hide();
        }
예제 #3
0
 public GoGymnasium(SkAdventure s)
 {
     this.sda = s;
     InitializeComponent();
     CheckForIllegalCrossThreadCalls = false;
 }
예제 #4
0
 public LearnComputer(SkAdventure s)
 {
     this.sda = s;
     InitializeComponent();
 }
예제 #5
0
 public SeeSeason(SkAdventure s)
 {
     this.sda = s;
     InitializeComponent();
     CheckForIllegalCrossThreadCalls = false;
 }
예제 #6
0
 public GoEnglishCorner(SkAdventure s)
 {
     this.sda = s;
     InitializeComponent();
     CheckForIllegalCrossThreadCalls = false;
 }
예제 #7
0
 public ParttimeWork(SkAdventure s)
 {
     this.sda = s;
     InitializeComponent();
     CheckForIllegalCrossThreadCalls = false;
 }