コード例 #1
0
ファイル: Form1.cs プロジェクト: neefez/Favorites-System
 private void chooses2_Click(object sender, EventArgs e)
 {
     EntryControl.EntryTwo.ranking = EntryControl.EntryOne.ranking;
     EntryControl.EntryTwo.ranking++;
     EntryControl.ChooseEntries();
     updateChoices();
 }
コード例 #2
0
ファイル: Form1.cs プロジェクト: neefez/Favorites-System
        private void button1_Click(object sender, EventArgs e)
        {
            string one   = textBox1.Text;
            string two   = textBox2.Text;
            string three = textBox3.Text;
            string four  = textBox4.Text;
            string five  = textBox5.Text;

            EntryControl.MakeNewSet(one, two, three, four, five);
            makeShitInvisible();
            makeShitVisible();

            updateChoices();
        }