ant-design-blazor/components/modal/config/IModalTemplate.cs
zxyao 31aac9f914 refactor: unified use of FeedbackComponent for modal comfirm and drawer (#1263)
* refactor: support to use the same template for confirm and modal

* refactor: support to use the same template for drawer

* refactor: separate interface IOkCancelRef

* chore: modify EventUtil class summary

Co-authored-by: James Yeung <shunjiey@hotmail.com>
2021-04-04 15:40:54 +08:00

38 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Threading.Tasks;
namespace AntDesign
{
public interface IModalTemplate
{
/// <summary>
/// 点击确定按钮时调用,可以重写它来放入自己的逻辑
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("Please replace it with OnFeedbackOkAsync")]
Task OkAsync(ModalClosingEventArgs args);
/// <summary>
/// 点击确定按钮时调用,可以重写它来放入自己的逻辑
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("Please replace it with OnFeedbackCancelAsync")]
Task CancelAsync(ModalClosingEventArgs args);
/// <summary>
/// 击确定按钮时调用,可以重写它来放入自己的逻辑
/// </summary>
/// <param name="args"></param>
/// <returns></returns>
Task OnFeedbackOkAsync(ModalClosingEventArgs args);
/// <summary>
/// 点击取消按钮时调用,可以重写它来放入自己的逻辑
/// </summary>
Task OnFeedbackCancelAsync(ModalClosingEventArgs args);
}
}