In this post, I explain how to implement a Modal Dialog component for Blazor WebAssembly that we can use everywhere in our application
Tag: blazor-component
Create Tooltip component for Blazor
I want to create a Tooltip component for Blazor WebAssembly, taking advantage of Blazor’s new CSS isolation feature. Click on the link and see
InputSelect component for enumerations in Blazor
I can’t find the component I need, so, I have created one and now I’m going to give you the code for InputSelect for enumerations in Blazor
Working with Blazor’s component model
Welcome to Working with Blazor’s component model” post! In this new post I’ll build a simple project in Blazor and explain the basic Blazor components and interactions. Also, the source code of the project I’m going to create in this post is available on GitHub. Here the posts I wrote about Blazor that help you to learn this new technology better and faster: What is a Blazor component? First, the fundamental building blocks of Blazor applications are components, almost everything you do will directly or indirectly work with them. In…