mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
|
using System.Threading.Tasks;
|
|||
|
using Microsoft.AspNetCore.Components;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public abstract class AntInputBoolComponentBase : AntInputComponentBase<bool>
|
|||
|
{
|
|||
|
[Parameter] public bool AutoFocus { get; set; }
|
|||
|
|
|||
|
private bool _checked;
|
|||
|
[Parameter]
|
|||
|
public bool Checked
|
|||
|
{
|
|||
|
get { return _checked; }
|
|||
|
set
|
|||
|
{
|
|||
|
_checked = value;
|
|||
|
if (_checked != Value)
|
|||
|
{
|
|||
|
Value = _checked;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
[Parameter]
|
|||
|
public EventCallback<bool> OnChange { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Gets or sets a callback that updates the bound checked value.
|
|||
|
/// </summary>
|
|||
|
[Parameter]
|
|||
|
public virtual EventCallback<bool> CheckedChanged { get; set; }
|
|||
|
|
|||
|
[Parameter]
|
|||
|
public bool Disabled { get; set; }
|
|||
|
|
|||
|
internal virtual string PrefixCls { get; }
|
|||
|
|
|||
|
protected override void OnValueChange(bool value)
|
|||
|
{
|
|||
|
base.OnValueChange(value);
|
|||
|
Checked = value;
|
|||
|
CheckedChanged.InvokeAsync(value);
|
|||
|
}
|
|||
|
|
|||
|
protected virtual async Task ChangeValue(bool value)
|
|||
|
{
|
|||
|
CurrentValue = value;
|
|||
|
if (this.OnChange.HasDelegate)
|
|||
|
await this.OnChange.InvokeAsync(value);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|