Skip to main content
A newer version of this page is available. .

DxButton.Click Event

Executes when the button is clicked.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public EventCallback<MouseEventArgs> Click { get; set; }

Event Data

The Click event's data class is MouseEventArgs.

Remarks

Handle this event to respond to button click.

<DxButton ...
    Click="@Like">

@code {
    // ...
    int likes;
    protected override void OnInitialized() {
        likes = 1;
    }
    void Like(MouseEventArgs args) {
        likes++;
    }
}

To use the button to submit a form, set the SubmitFormOnClick option to true.

Run Demo: Button — Custom Content

See Also