Event handling
Razor components handle events by using an HTML element attribute named @on{EVENT}
where EVENT
is the name of the event.
The following code calls the OnClickHandler
method when the button is clicked:
<button class="btn btn-success" @onclick="OnClickHandler"> Â Â Â Â Click Me </button> @code { Â Â Â Â private void OnClickHandler() Â Â Â Â { Â Â Â Â Â Â Â Â // ... Â Â Â Â } }
Since event handlers automatically trigger a UI render, we do not need to call StateHasChanged
when processing them. Event handlers can be used to call both synchronous and asynchronous methods. Also, they can reference any arguments that are associated with the event.
The following code asynchronously calls the OnChangeHandler
method when the checkbox is changed:
<input type="checkbox" @onchange="OnChangedHandler" /> @code { Â ...