@using Syncfusion.Blazor.Buttons
<SfCheckBox Label="Syncfusion Checkbox" @bind-Checked="@Checked" ValueChange="Change" TChecked="bool"></SfCheckBox>
<br />
<br />
<input type="checkbox" checked="@InputChecked" @onchange="@(p=>ValueChangeBool())"/>
<label>Input checkbox</label>
@code {
private bool Checked = true;
private bool InputChecked = true;
private void Change(ChangeEventArgs<bool> args)
{
}
private void ValueChangeBool()
{
}
}
|
.Netstandard2.1 (Client Proj) |
.NetCore3.1(Server proj) |
.NET5.0(client and server proj) |
if sample target has 2.1 Then the dependencies for syncfusion is Note: All Client (Wasm) projects are targeted to .NetStandard 2.1 |
if sample target has 3.1 Dependencies, |
Sample target to .net 5.0 Then the dependencies syncfusion project is |