ant-design-blazor/components/checkbox/Checkbox.razor

23 lines
615 B
C#
Raw Normal View History

@namespace AntDesign
@inherits AntInputComponentBase<bool>
2019-12-18 15:11:41 +08:00
<label class="@ClassMapper.Class" style="@Style" id="@Id" @ref="Ref">
<span class="@ClassMapperSpan.Class">
<input value="@Label"
checked="@Checked"
disabled="@Disabled"
@onchange="@InputCheckedChange"
@attributes="@InputAttributes"
type="checkbox"
class="ant-checkbox-input" />
<span class="ant-checkbox-inner"></span>
</span>
@if (ChildContent != null)
{
<span>
@ChildContent
</span>
}
</label>