Example #1
0
 /// <summary>
 /// This button opens up the BF2Statistics config form
 /// </summary>
 private void BF2sConfig_Click(object sender, EventArgs e)
 {
     BF2sConfig Form = new BF2sConfig();
     Form.ShowDialog();
 }
Example #2
0
 /// <summary>
 /// This button opens up the BF2Statistics config form
 /// </summary>
 private void BF2sConfig_Click(object sender, EventArgs e)
 {
     using (BF2sConfig Form = new BF2sConfig())
     {
         Form.ShowDialog();
         CheckPythonStatus();
     }
 }