Please help me.
I do not find any CheckedChanged example for MudCheckBox. I got the results related to input control only.
<input type="checkbox" @onchange="HandleCheck" />I tried the documents but didn't get exact example for MudCheckBox. I'm able to bind successfully to the IsCheckedTrue property. This checkbox is inside the MudTable. All I want to call CheckedChanged event.
<MudCheckBox @bind-Checked="@context.IsCheckedTrue" Color="Color.Secondary" CheckedIcon="@Icons.Material.Filled.RadioButtonChecked" UncheckedIcon="@Icons.Material.Filled.RadioButtonUnchecked"></MudCheckBox>