Rock.Web.UI.Controls.RegistrationTemplateFormEditor.lbDeleteForm_Click C# (CSharp) Method

lbDeleteForm_Click() protected method

Handles the Click event of the lbDeleteForm control.
protected lbDeleteForm_Click ( object sender, EventArgs e ) : void
sender object The source of the event.
e EventArgs The instance containing the event data.
return void
        protected void lbDeleteForm_Click( object sender, EventArgs e )
        {
            if ( DeleteFormClick != null )
            {
                DeleteFormClick( this, e );
            }
        }