/// <summary> /// Invoked when the 'Settings' button is clicked. Opens the settings window /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void BtnSettingsClick(object sender, EventArgs e) { _settingsForm.Show(); btnSettings.Enabled = false; }
/// <summary> /// Invoked when the 'Settings' button is clicked. Opens the settings window /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void BtnSettingsClick(object sender, EventArgs e) { _settingsForm = new SettingsForm(this); _settingsForm.Show(); }