private void btnCancel_Click(object sender, EventArgs e) { try { OnCancelBtnClick?.Invoke(sender, e); } catch (Exception ex) { this.StandardExceptionMsgBox(ex); } }
private void btnCancel_Click(object sender, EventArgs e) { try { OnCancelBtnClick?.Invoke(sender, e); } catch (Exception ex) { this.StandardUnhandledErrorMsgBox(ex.Message); } }