Skip to content

abivelj/blazor-components

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

blazor-components

Working with blazor I ended up needing some components and decided to write my own for my projects

1. Radio Button

Issue is that there is not two way data binding and I've made a simple radio button that does two-way data binding.

Usage

var _isChecked = false;
<label>
    <RadioButton Name="radioExample" TItem="bool" @bind-Value="_isChecked" CheckedValue="true" /> On
</label>

<label>
    <RadioButton Name="radioExample" TItem="bool" @bind-Value="_isChecked" CheckedValue="false" /> Off
</label>

About

Custom Blazor Components

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages