示例#1
0
 // Token: 0x06000007 RID: 7 RVA: 0x00002240 File Offset: 0x00000440
 private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (this.comboBox1.SelectedItem.ToString() == "English")
     {
         this.ChangeLanguage("en");
         Form1._currentLanguage = Form1.CurrentLanguage.en;
     }
     else if (this.comboBox1.SelectedItem.ToString() == "日本語")
     {
         this.ChangeLanguage("ja-JP");
         Form1._currentLanguage = Form1.CurrentLanguage.jp;
     }
     CMLparser.ReloadCML();
 }
示例#2
0
 // Token: 0x06000005 RID: 5 RVA: 0x00002210 File Offset: 0x00000410
 private void CB_outputParts_CheckedChanged(object sender, EventArgs e)
 {
     CMLparser.outputParts = this.CB_outputParts.Checked;
     CMLparser.ReloadCML();
 }