mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 09:21:24 +08:00
31aac9f914
* 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>
53 lines
1.3 KiB
C#
53 lines
1.3 KiB
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesign
|
|
{
|
|
/// <summary>
|
|
/// Component reference with open and close method
|
|
/// </summary>
|
|
public interface IFeedbackRef
|
|
{
|
|
/// <summary>
|
|
/// to get feedback inner component's event
|
|
/// </summary>
|
|
internal IModalTemplate ModalTemplate { get; set; }
|
|
|
|
/// <summary>
|
|
/// on Feedback open
|
|
/// </summary>
|
|
public Func<Task> OnOpen { get; set; }
|
|
|
|
/// <summary>
|
|
/// on Feedback close
|
|
/// </summary>
|
|
public Func<Task> OnClose { get; set; }
|
|
|
|
/// <summary>
|
|
/// open the component
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Task OpenAsync();
|
|
|
|
/// <summary>
|
|
/// update the component
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Task UpdateConfigAsync();
|
|
|
|
/// <summary>
|
|
/// just do close feedback component, and will not trigger OkAsync or OkCancel
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Task CloseAsync();
|
|
}
|
|
|
|
|
|
}
|