/// <summary> /// Button click event handler that opens a dialog to find Confeaturator Action Providers. /// </summary> /// <param name="sender">The sender object.</param> /// <param name="e">The event arguments.</param> private void btnFind_Click(object sender, EventArgs e) { FrmFindConfeaturatorActionProvider frmFind = new FrmFindConfeaturatorActionProvider(); if (frmFind.ShowDialog() == DialogResult.OK) { confeaturatorActionProviderSettingBindingSource.Add(frmFind.ConfeaturatorActionProviderSetting); } }