mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 21:47:38 +08:00
42 lines
1.6 KiB
C#
42 lines
1.6 KiB
C#
@namespace AntDesign
|
|
@inherits AntInputComponentBase<string[]>
|
|
@using AntDesign.Internal;
|
|
|
|
<CascadingValue Value="null" Name="FormItem" TValue="IFormItem" IsFixed="@true">
|
|
<CascadingValue Value="this" IsFixed="@true">
|
|
<div class="@ClassMapper.Class" style="@Style" id="@Id" @ref="Ref">
|
|
@if (MixedMode == CheckboxGroupMixedMode.ChildContentFirst)
|
|
@ChildContent
|
|
@if (Options.Value != null)
|
|
{
|
|
if (Options.IsT0)
|
|
{
|
|
@foreach (var option in Options.AsT0)
|
|
{
|
|
<Checkbox class="ant-checkbox-group-item"
|
|
Disabled="option.Disabled || Disabled"
|
|
Checked="@option.Checked"
|
|
Label="@option.Value">
|
|
<span>@option.Label</span>
|
|
</Checkbox>
|
|
}
|
|
}
|
|
else
|
|
{
|
|
@foreach (var option in Options.AsT1)
|
|
{
|
|
<Checkbox class="ant-checkbox-group-item"
|
|
Disabled="Disabled"
|
|
Checked="@option.IsIn(_selectedValues)"
|
|
Label="@option">
|
|
<span>@option</span>
|
|
</Checkbox>
|
|
}
|
|
}
|
|
}
|
|
@if (MixedMode == CheckboxGroupMixedMode.OptionsFirst)
|
|
@ChildContent
|
|
</div>
|
|
</CascadingValue>
|
|
</CascadingValue>
|