using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace FCC_Uber_MDX_Configurator { public partial class ConfirmDeleteForm : Form { #region Initialize public ConfirmDeleteForm(string objectID) { InitializeComponent(); TXT_AREA.Text += "\r\n" + "[" + objectID + "]"; BTN_CANCEL_ERROR.Focus(); this.Update(); } #endregion #region Exit Error Form private void BTN_CANCEL_Click(object sender, EventArgs e) { this.DialogResult = DialogResult.Cancel; this.Close(); } private void BTN_SAVE_Click(object sender, EventArgs e) { this.DialogResult = DialogResult.OK; this.Close(); } #endregion } }