mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 21:47:38 +08:00
22 lines
685 B
C#
22 lines
685 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
<label class="ant-checkbox-wrapper" style="@Style;" id="@Id" @ref="Ref">
|
|
<span class="@ClassMapper.Class" style="">
|
|
<input @ref="_inputElement"
|
|
value="@(Value)"
|
|
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 @ref="_contentElement">
|
|
@ChildContent
|
|
</span>
|
|
}
|
|
</label> |