Introduction to Events
Explore how to handle events in Blazor WebAssembly to build interactive web applications. Learn about event handling, arbitrary parameters, and attribute splatting by creating a dynamic Kanban board with drag-and-drop functionality and multiple dropzones.
We'll cover the following...
We'll cover the following...
Overview
As developers, we strive to make our applications as dynamic as possible. For that, we use events. Events are messages sent by an object to indicate that an action has occurred. Razor components can ...