mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
68 lines
1.6 KiB
C#
68 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class AutoCompleteInput<TValue> : Input<TValue>, IAutoCompleteInput
|
|
{
|
|
public AutoCompleteInput()
|
|
{
|
|
AutoComplete = false;
|
|
}
|
|
|
|
[CascadingParameter]
|
|
public IAutoCompleteRef Component { get; set; }
|
|
|
|
[CascadingParameter(Name = "OverlayTriggerContext")]
|
|
public ForwardRef OverlayTriggerContext
|
|
{
|
|
get { return RefBack; }
|
|
set { RefBack = value; }
|
|
}
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
base.OnInitialized();
|
|
|
|
if (Component != null) Component?.SetInputComponent(this);
|
|
}
|
|
|
|
internal override async Task OnFocusAsync(FocusEventArgs e)
|
|
{
|
|
if (Component != null) await Component?.InputFocus(e);
|
|
|
|
await base.OnFocusAsync(e);
|
|
|
|
}
|
|
|
|
protected override async Task OnkeyDownAsync(KeyboardEventArgs args)
|
|
{
|
|
await base.OnkeyDownAsync(args);
|
|
|
|
if (Component != null) await Component?.InputKeyDown(args);
|
|
}
|
|
|
|
|
|
protected override async void OnInputAsync(ChangeEventArgs args)
|
|
{
|
|
base.OnInputAsync(args);
|
|
|
|
if (Component != null) await Component?.InputInput(args);
|
|
}
|
|
|
|
|
|
#region IAutoCompleteInput
|
|
|
|
public void SetValue(object value)
|
|
{
|
|
this.CurrentValue = (TValue)value;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|