/// <summary> /// This button opens up the BF2Statistics config form /// </summary> private void BF2sConfig_Click(object sender, EventArgs e) { BF2sConfig Form = new BF2sConfig(); Form.ShowDialog(); }
/// <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(); } }