Search⌘ K

Creating the Kanban Board Project

Explore how to create a Kanban board using Blazor WebAssembly by starting with an empty project template. Learn to add TaskItem classes, incorporate multiple Dropzone components on the main page, and enable adding new tasks. This lesson helps you apply event handling to build a functional, interactive board.

The KanbanBoard project will be created by using the Empty Blazor WebAssembly App project template. First, we will add the TaskItem class. Then, we will add a Dropzone component. We will add three of the Dropzone components to the “Home” page to create the Kanban board. Finally, we will add the ability to add ...