Creating the Kanban Board
Explore how to build a functional Kanban board in Blazor WebAssembly by adding dropzones and handling drag-and-drop events. Learn to initialize tasks, update task priorities through interactions, and run a dynamic project. This lesson helps you understand event-driven UI design using Blazor components.
We'll cover the following...
We'll cover the following...
We need to add three dropzones to create our Kanban board, one dropzone for each of the three types of task. We do this as follows:
- Open the
Pages\Index.razorpage. - Add the following
@usingdirective:
- Add the