예제 #1
0
        private void DeleteSet_Click(object sender, EventArgs e)
        {
            SpreadConfig config = SpreadConfig.Current;

            config.SpreadCredits = "";
            config.TransferUrl   = "";
            config.Save();
            this.LoadScoreInf();
        }
예제 #2
0
        private void SaveInfo_Click(object sender, EventArgs e)
        {
            string       spreadCredits = this.extcredits1.Text + "," + this.extcredits2.Text + "," + this.extcredits3.Text + "," + this.extcredits4.Text + "," + this.extcredits5.Text + "," + this.extcredits6.Text + "," + this.extcredits7.Text + "," + this.extcredits8.Text;
            SpreadConfig config        = SpreadConfig.Current;

            config.SpreadCredits = spreadCredits;
            config.TransferUrl   = this.txtTransferUrl.Text;
            config.Save();
            this.LoadScoreInf();
        }