Search⌘ K
AI Features

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 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:

  1. Open the Pages\Index.razor page.
  2. Add the following @using directive:
C++
@using KanbanBoard.Models
  1. Add the
...