void Setting(string file) { if (Properties.Settings.Default.UseFolderPlugin) { return; } MessageBox.Show($"\"{file}\" not found or not configured.\nPlease configure before use."); Form frm = new frmSetting(); frm.ShowDialog(); }
private void btnSetting_Click(object sender, EventArgs e) { Form frm = new frmSetting(); frm.ShowDialog(); }
void Setting(string file) { if (Properties.Settings.Default.UseFolderPlugin) return; MessageBox.Show($"\"{file}\" not found or not configured.\nPlease configure before use."); Form frm = new frmSetting(); frm.ShowDialog(); }