mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
21 lines
459 B
C#
21 lines
459 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 InputInput(ChangeEventArgs args);
|
|||
|
|
|||
|
Task InputKeyDown(KeyboardEventArgs args);
|
|||
|
}
|
|||
|
}
|