ant-design-blazor/components/auto-complete/IAutoCompleteRef.cs
TimChen f09e71ba06 feat: auto complete refactor (#529)
* feat: auto complete refactor

* feat: autocomplete Refactor

* feat: autocomplete property

* feat: autocomplate

* feat: autocomplete

* feat: autocomplete

Co-authored-by: James Yeung <shunjiey@hotmail.com>
2020-08-26 22:37:08 +08:00

23 lines
502 B
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 interface IAutoCompleteRef
{
void SetInputComponent(IAutoCompleteInput input);
Task InputFocus(FocusEventArgs e);
Task InputBlur(FocusEventArgs e);
Task InputInput(ChangeEventArgs args);
Task InputKeyDown(KeyboardEventArgs args);
}
}