mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 13:37:35 +08:00
19f51c87fa
* fix: drawer close event bug * refactor: translate some comments Co-authored-by: ElderJames <shunjiey@hotmail.com>
19 lines
346 B
C#
19 lines
346 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public interface IDrawerRef
|
|
{
|
|
DrawerOptions Options { get; set; }
|
|
|
|
Drawer Drawer { get; set; }
|
|
|
|
Task CloseAsync();
|
|
|
|
Func<DrawerClosingEventArgs, Task> OnClosing { get; set; }
|
|
}
|
|
}
|