protected virtual void OnCustomerError(CustomerErrorEventArgs args) { if (CustomerError != null) CustomerError(this, args); }
void form_CustomerError(object o, CustomerErrorEventArgs args) { ErrorMessageLiteral.Text = args.ErrorMessage + " test from literal control"; }