EventCallback Parameters

Learn to use event handlers in Blazor Webassembly.

We'll cover the following...

An event callback is a method that we pass to another method to be called when a particular event occurs. For example, when the button on the Alert component is clicked, the @onclick event uses the OnOk parameter to determine the method that should be called. The method that the OnOK parameter ...