Atualmente eu tenho isso:
@foreach (var rol in Rollenlist)
{
<InputCheckbox class="form-check" @[email protected] @onclick="(() => RolSelected(rol.Id.Value))" />
}
e
void RolSelected(int id)
{
...
}
Eu gostaria de usar o MudCheckbox:
<MudCheckBox @bind-Checked="@rol.IsSelected" Label="@rol.Name" LabelPosition="LabelPosition.Start" Color="Color.Primary"
Size="MudBlazor.Size.Large" CheckedChanged="RolSelected(rol.Id.Value)"></MudCheckBox>
Mas isto não está funcionando.
RZ1OO1O: The component parameter 'CheckedChanged' is used two or more times for this component. Parameters must be unique (case-insensitive). The component parameter 'CheckedChanged' is
generated by the '@bind-Checked' directive attribute.
CS1503: Argument 2: cannot convert from 'void' to 'Microsoft.AspNetCore.Components.EventCallback
Como posso consertar isso?